5월 끝!

 

그리고 오늘은 특별 휴가 2일중 첫째날!

Posted by 구차니

어우 무섭게 비가 쏟아지네

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

개스키!!!!  (0) 2021.06.15
low batt  (0) 2021.06.12
개털 민다!  (0) 2021.05.29
완전 연소  (0) 2021.05.28
외근  (0) 2021.05.27
Posted by 구차니

우리집 막내 별이 첫 털밀기 ㅋㅋ

 

우라지게(!) 털 뿜뿜이라 확 밀어 버리기!!

단모라서 털이 더 많이 빠지는 건가?

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

low batt  (0) 2021.06.12
폭우  (0) 2021.05.30
완전 연소  (0) 2021.05.28
외근  (0) 2021.05.27
기절  (0) 2021.05.23
Posted by 구차니

하얗게 불태움 -_ㅠ

 

정말 역대로 이렇게 하루를 빡세게 보낸적이 있었던가 싶을 정도 ㅠㅠ

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

폭우  (0) 2021.05.30
개털 민다!  (0) 2021.05.29
외근  (0) 2021.05.27
기절  (0) 2021.05.23
비는 안와서 좋네  (0) 2021.05.19
Posted by 구차니

외근했다 사무실 와서 집에 오려고 노력했으나

우산을 버스에 두고 내렸다는 슬픈 이야기 ㅠㅠ

'개소리 왈왈 > 육아관련 주저리' 카테고리의 다른 글

개털 민다!  (0) 2021.05.29
완전 연소  (0) 2021.05.28
기절  (0) 2021.05.23
비는 안와서 좋네  (0) 2021.05.19
무슨 주말 내내 비만 오냐 -_-  (0) 2021.05.16
Posted by 구차니

segmentation fault가 떠서 어디서 죽나 찾는데 꽤나 고생했네 -_-

(빌드가 느리면 역시 스트레스..)

 

그런데 도무지 allocateTensors() 라는 함수가 어떤 역활을 하는지 모르겠네..

한번 할당하고 또 할당하면 오류나는 느낌..

 

  // Allocate memory for the model's input `Tensor`s.
  try interpreter.allocateTensors()

[링크 : https://www.tensorflow.org/lite/guide/inference]

[링크 : https://www.tensorflow.org/lite/api_docs/cc/class/tflite/interpreter#allocatetensors]

 

여기 소스를 많이 참고했는데.. tensorflow의 label_image쪽이랑은 또 많이 달라서

어느 가이드를 따라가야 하나 고민..

[링크 : https://github.com/Qengineering/TensorFlow_Lite_SSD_RPi_64-bits/blob/master/MobileNetV1.cpp]

'프로그램 사용 > yolo_tensorflow' 카테고리의 다른 글

tflite yolov4  (0) 2021.06.14
tensorflow lite yolov4  (0) 2021.06.10
tflite common.h  (0) 2021.05.21
imx6q neon tensorlow lite  (0) 2021.05.10
tflite type  (0) 2021.05.01
Posted by 구차니
Linux API/linux2021. 5. 25. 15:00

mmap()으로 특정 메모리 영역을 접근하는데

이상한 순서로 에러 메시지가 뒤죽박죽 되어 나와서 겨우겨우 복구(?) 해봤더니 더 멘붕오는 듯한 용어만 잔뜩 -_-

Unhandled fault: external abort on non-linefetch (0x1818) at 0x70000000
pgd = cdbbc000
Error: [70000000] *pgd=0dbc3831, *pte=70000743, *ppte=70000c33

 

ppte는 약어를 못 찾음 (느낌은 pte에 대한 pointer 아닐까 싶긴 하지만..)

PGD : Page Global Directory
PTE : Page Table Entries

[링크 : https://www.kernel.org/doc/gorman/html/understand/understand006.html]

 

(0x1818) 음.. 딱 적절한 나의 마음을 나타내는 값은 ifsr 레지스터 라는데

The values in parenthesis are the ifsr (instruction fault status) register

[링크 : https://stackoverflow.com/questions/15889483/what-do-these-kernel-panic-errors-mean]

 

레지스터값의 의미를 요약하면 다음과 같은데

AXI Slave error로 인해서 abort가 발생,
write access가 abort를 발생
D1 domain?
precise external abort, nontranslation

도대체 무슨 말이야!!!

 




SD
Indicates whether an AXI Decode or Slave error caused an abort. This bit is only valid for external aborts. For all other aborts this bit Should Be Zero:
0 = AXI Decode error caused the abort, reset value
1 = AXI Slave error caused the abort.

RW
Indicates whether a read or write access caused an abort:
0 = read access caused the abort, reset value
1 = write access caused the abort.

Domain
Indicates which one of the 16 domains, D15-D0, is accessed when a data fault occurs. This field takes values 0-15.

Status
Indicates the type of exception generated. To determine the data fault, bits [12] and [10] must be used in conjunction with bits [3:0]. The following encodings are in priority order, 1 is the highest:

0b000001 alignment fault
0b000100 instruction cache maintenance fault
0bx01100 L1 translation, precise external abort
0bx01110 L2 translation, precise external abort
0b011100 L1 translation precise parity error
0b011110 L2 translation precise parity error
0b000101 translation fault, section
0b000111 translation fault, page
0b000011 access flag fault, section
0b000110 access flag fault, page
0b001001 domain fault, section
0b001011 domain fault, page
0b001101 permission fault, section
0b001111 permission fault, page
0bx01000 precise external abort, nontranslation
0bx10110 imprecise external abort
0b011000 imprecise error, parity or ECC
0b000010 debug event.

[링크 : https://developer.arm.com/documentation/.../c5--data-fault-status-register]

 

[링크 : https://github.com/brgl/busybox/blob/master/miscutils/devmem.c]

'Linux API > linux' 카테고리의 다른 글

파일 존재유무 확인하기  (0) 2022.02.11
select, poll, epoll  (0) 2021.11.02
Stopped (tty input)  (0) 2021.05.21
linux gpio interrupt poll?  (0) 2021.05.04
Floating point exception  (0) 2021.04.05
Posted by 구차니

요근래 기사중에 가장 아픈 곳을 찌르는 기사인듯.

나쁘게 말하면 무슨 국비지원 학원이 이번에 새로 선정되었나 싶을 정도로

학원 광고들이 넘쳐나는 느낌이었는데

 

콕 찍어서 그런거 해서 돈 벌 수 있는게 아니다.

실제는 정말 천재개발자 하나를 낚기 위한 밑밥일 뿐

이라는 느낌의 기사.

 

근데 개발자던 코더든 우리나라 환경에서 구분이 가능하긴 한가 싶다.

 

[링크 : https://news.v.daum.net/v/20210524113608246]

'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글

월 초 = 지름  (2) 2021.06.01
월 말  (2) 2021.05.31
시간만 잘간다~  (0) 2021.05.20
휴가인데 휴가 같지가 않다.  (0) 2021.05.17
놋북이 생겼습니다!  (0) 2021.05.12
Posted by 구차니
Programming/c# & winform2021. 5. 24. 18:28

터미널에서 알록달록하게 해주는 그것!

vt 에뮬레이터 결과를 richtextbox로 보낼까.. 아니면 HTML로 보낼까.. 흐음..

 

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

[링크 : https://gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797]

 

'Programming > c# & winform' 카테고리의 다른 글

winform 첨자(superscript/subscript)  (0) 2021.07.07
nuget RibbonWinForms  (0) 2021.07.06
c# richtextbox 글씨 색상 입히기  (0) 2021.05.24
c# named argument  (0) 2021.01.06
아.. 이놈의 인코딩..  (0) 2020.12.03
Posted by 구차니
Programming/c# & winform2021. 5. 24. 18:25

영역을 선택하고

선택 영역의 색상을 지정하는 느낌으로 색을 추가한다.

 

SelectionColor = 글씨 색상 <<

SelectionBackColor = 글씨 배경 색 <<

BackColor = richtextbox 전체 배경 색

 

[링크 : https://stackoverflow.com/questions/1926264/color-different-parts-of-a-richtextbox-string]

'Programming > c# & winform' 카테고리의 다른 글

nuget RibbonWinForms  (0) 2021.07.06
ansi escape code  (0) 2021.05.24
c# named argument  (0) 2021.01.06
아.. 이놈의 인코딩..  (0) 2020.12.03
c# vertical tab  (0) 2020.11.26
Posted by 구차니