'이론 관련/컴퓨터 관련'에 해당되는 글 84건

  1. 2022.10.17 DR - Disaster Recovery Plan
  2. 2022.06.02 SLP - Superword Level Parallelism
  3. 2022.04.13 digital twin
  4. 2021.10.22 current loop to rs232
  5. 2021.09.23 usb dwc
  6. 2021.05.10 fp16
  7. 2020.11.17 gps 체크섬
  8. 2020.11.05 GPX, NMEA 포맷 변환
  9. 2020.11.05 NMEA / GPS 날짜&시간
  10. 2020.10.27 온프레미스

이번 카카오 사태에 갑자기 뜬(?) 용어

HA까지만 알았는데 DR은 솔찍히 첨 듣는다.

 

[링크 : https://en.wikipedia.org/wiki/Disaster_recovery]

[링크 : https://en.wikipedia.org/wiki/Business_continuity_planning]

[링크 : https://m.blog.naver.com/kkson50/120147495464]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

cordic (coordinate rotation digital computer)  (0) 2023.02.27
tlv  (0) 2022.10.19
SLP - Superword Level Parallelism  (0) 2022.06.02
digital twin  (0) 2022.04.13
current loop to rs232  (0) 2021.10.22
Posted by 구차니

gcc에서 vectorize  옵션을 통해 빌드 하는데

-fopt-info-vec-all -O3 -mavx

 

메시지들 중에서 SLP 라는 용어 발견

note: ===vect_slp_analyze_bb===

note: Final SLP tree for instance:
note: Build SLP for varname = 900;
note: Build SLP failed: unrolling required in basic block SLP

note: vectorizing stmts using SLP.

 

gcc 메뉴얼에도 SLP 어쩌구는 나오는데 약어가 안나온다.

2011-10-23
  1. Vectorization of reduction in loop SLP. Both multiple reduction cycles and reduction chains are supported.
  2. Various basic block vectorization (SLP) improvements, such as better data dependence analysis, support of misaligned accesses and multiple types, cost model.

[링크 : https://gcc.gnu.org/projects/tree-ssa/vectorization.html#using]

 

Superword-Level Parallelism (SLP) vectorizer

[링크 : https://rcor.me/papers/cgo19snslp.pdf]

 

Superword level parallelism (SLP) is an advanced method of traditional vectorization that facilitates parallelism across loop iterations, SIMD, and basic blocks. Vectorization in this context is the process used to complete several similar tasks (or instructions) simultaneously, therefore saving processing time and resources.

[링크 : https://www.webopedia.com/definitions/superword-level-parallelism/]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

tlv  (0) 2022.10.19
DR - Disaster Recovery Plan  (0) 2022.10.17
digital twin  (0) 2022.04.13
current loop to rs232  (0) 2021.10.22
usb dwc  (0) 2021.09.23
Posted by 구차니

디지털 트윈은.. 테슬라 자율주행의 컨셉이라고 하면 쉽게 이해가 되려나?

현실을 스캔해서 가상현실로 끌어오고

그걸 이용해 다양하게 분석, 시뮬레이션 하여 최적의 운전을 하는 것

그 대상이 빌딩일 수도 있고, 땅일수도 있고 특정 물건일 수도 있다.

 

[링크 : https://matterport.com/ko/what-digital-twin]

[링크 : https://redshift.autodesk.co.kr/what-is-a-digital-twin/]

 

디지털 트윈은 물리적 객체, 프로세스, 관계, 행동을 포함하는 실세계의 가상 표현입니다. GIS는 자연 및 인공 환경의 디지털 트윈을 생성하며 다양한 유형의 디지털 모델을 고유하게 통합합니다.

[링크 : https://www.esri.com/ko-kr/digital-twin/overview]

 

‘디지털 트윈(Digital-Twin)’이란?
실제 장비나 공간을 가상 세계에 쌍둥이처럼 똑같이 구현하는 기술이에요.

[링크 : https://www.korea.kr/news/visualNewsView.do?newsId=148876722]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

DR - Disaster Recovery Plan  (0) 2022.10.17
SLP - Superword Level Parallelism  (0) 2022.06.02
current loop to rs232  (0) 2021.10.22
usb dwc  (0) 2021.09.23
fp16  (0) 2021.05.10
Posted by 구차니

current loop <-> 232로 변환이 되는걸 보면 신기하네

전류를 이용해서 0과 1을 구분하게 하고 전송하는 걸려나?

[링크 : https://en.wikipedia.org/wiki/Digital_current_loop_interface]

 

가격이 자비가 없구만 -_-

[링크 : https://www.advantech.co.kr/products/9b61869b-9881-49a5-ae89-43f1437c14d1/bb-232cl9r/mod_aee5aa69-8a42-46eb-8bf8-10df17c4a938]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

SLP - Superword Level Parallelism  (0) 2022.06.02
digital twin  (0) 2022.04.13
usb dwc  (0) 2021.09.23
fp16  (0) 2021.05.10
gps 체크섬  (0) 2020.11.17
Posted by 구차니

리눅스 커널에서 보다 보니 USB에는 DWC 라는게 붙길래 찾아보니

DesignWare Core 라는 용어가 나온다.

synopsys는 회사명 designware(r)은 IP의 명칭이라고 해야하려나?

 

[링크 : https://www.synopsys.com/dw/ipdir.php?ds=dwc_usb_2_0_digital_controllers]

[링크 : https://www.kernel.org/doc/html/v5.0/driver-api/usb/dwc3.html]

 

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

digital twin  (0) 2022.04.13
current loop to rs232  (0) 2021.10.22
fp16  (0) 2021.05.10
gps 체크섬  (0) 2020.11.17
GPX, NMEA 포맷 변환  (0) 2020.11.05
Posted by 구차니

float가 대개 32bit

double이 대개 64bit 인데

fp16이라고 16bit짜리 half precision float point라는게 존재하네..

 

They can express values in the range ±65,504, with the minimum value above 1 being 1 + 1/1024.

In the IEEE 754-2008 standard, the 16-bit base-2 format is referred to as binary16. It is intended for storage of floating-point values in applications where higher precision is not essential for performing arithmetic computations.

[링크 : https://en.wikipedia.org/wiki/Half-precision_floating-point_format]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

current loop to rs232  (0) 2021.10.22
usb dwc  (0) 2021.09.23
gps 체크섬  (0) 2020.11.17
GPX, NMEA 포맷 변환  (0) 2020.11.05
NMEA / GPS 날짜&시간  (0) 2020.11.05
Posted by 구차니

$ 제외하고 * 앞 까지의 내용을

0과 XOR해서 계산한다.

$GPRMC,011641.00,A,3724.064281,N,12659.430194,E,002.6,346.9,261020,,,A*5F

[링크 : https://nmeachecksum.eqth.net/]

[링크 : https://techlog.gurucat.net/305]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

usb dwc  (0) 2021.09.23
fp16  (0) 2021.05.10
GPX, NMEA 포맷 변환  (0) 2020.11.05
NMEA / GPS 날짜&시간  (0) 2020.11.05
온프레미스  (0) 2020.10.27
Posted by 구차니

구글 지도 에서 export 가능한 포멧이 GPX인데 XML 기반이다.

GPX를 NMEA(GPS raw data) 형식으로 변환이 가능하면

구글 어스에서 내가 경로를 만들어서 raw 데이터로 쓸 수 있으려나?

 

 

gpx to nmea를 해보는데 output data가 NMEA 0183으로 지정된다. NMEA 2000은 파일 포맷이 아닌건가?

그리고 변환해보니 (point.gpx) GPWPL 로만 생성이 된다.

 

[링크 : https://mygeodata.cloud/converter/gpx-to-nmea]

[링크 : https://mygeodata.cloud/converter/nmea-to-gpx]

 

[링크 : https://wiki.openstreetmap.org/wiki/Converting/NMEA_to_GPX]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

fp16  (0) 2021.05.10
gps 체크섬  (0) 2020.11.17
NMEA / GPS 날짜&시간  (0) 2020.11.05
온프레미스  (0) 2020.10.27
NMEA 포맷  (0) 2020.10.26
Posted by 구차니

epoch로 계산해야 하는줄 알았는데 자릿수가 적어서 고민때리다가 발견

그냥 두자리씩 자르면 된다 -_-

 

GPGGA는 위치와 시간 정보가 들어있는 녀석인데

011557.00은 시간으로

01:15:57.00 UTC (KST는 +9니까 한국은 10시)

 

261020은 날짜로

DD/MM/YY

26/10/20 -> 2020년 10월 26일 로 출력된다.

 

마지막의 CRC만 계산하는 법 찾으면 그냥 라이브러리 만들어서 쓰는게 편할지도?

+

[링크 : https://en.wikipedia.org/wiki/NMEA_0183#C_implementation_of_checksum_generation]

 

$GPGGA,011557.00,3724.048737,N,12659.412849,E,1,27,0.3,90.1,M,18.4,M,,*5E
$GPRMC,011557.00,A,3724.048737,N,12659.412849,E,002.0,069.3,261020,,,A*56

 

 

for example:

$GPRMC,040302.00,A,3209.992,N,11052.530,W,0.00,93.70, 070807,11.30,E*7C

 

I would extract 040302.00 and 070907 and converted to milliseconds of the week (0000 SUnday GMT).

Tuesday August 07, 2007 04:03:02.00 AM UTC  would equal to: 187,382,000 milliseconds

[링크 : https://social.msdn.microsoft.com/.../how-to-convert-gps-utc-time-to-millisecond-of-the-week?forum=netfxbcl]

[링크 : https://blog.naver.com/6k5tvb/120061235070]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

gps 체크섬  (0) 2020.11.17
GPX, NMEA 포맷 변환  (0) 2020.11.05
온프레미스  (0) 2020.10.27
NMEA 포맷  (0) 2020.10.26
NUMA, SMP  (0) 2020.09.25
Posted by 구차니

on premise 건물내에 있는?

AWS 책 보다 보니 온프레미스 라는 말이 나와서 뒤적뒤적.

 

그냥 사전적으로는

전제, 부동산, 토지 등의 의미를 지니는데 on~ 이니까 토지내에 있는

즉, 건물에 포함된 전산실을 의미하는 듯

 

 

[링크 : https://www.hpe.com/kr/ko/what-is/on-premises-vs-cloud.html]

[링크 : http://www.dt.co.kr/contents.html?article_no=2017012602102269041001]

[링크 : https://en.dict.naver.com/#/entry/enko/49fa631bf3154585b1b554c88ac0039a]

'이론 관련 > 컴퓨터 관련' 카테고리의 다른 글

GPX, NMEA 포맷 변환  (0) 2020.11.05
NMEA / GPS 날짜&시간  (0) 2020.11.05
NMEA 포맷  (0) 2020.10.26
NUMA, SMP  (0) 2020.09.25
파일 스토리지, 블록 스토리지, 오브젝트 스토리지  (0) 2020.09.18
Posted by 구차니