Jaehun's Blog

For Efficient AI


  • 홈

  • 카테고리

  • 태그

  • 아카이브

  • About

  • 검색

LLVM (clang) build and install (ubuntu 18.04)

작성일 2021-02-12 | In compiler
Reading time 0

clone llvm repo

git clone -b llvmorg-10.0.0 https://github.com/llvm/llvm-project.git llvm10

configure

Ninja를 사용하면 컴파일 시간을 많이 단축할 수 있다.

cd llvm9
mkdir build
cmake -DLLVM_ENABLE_PROJECTS="clang;"   -DCMAKE_BUILD_TYPE=Release  -DLLVM_ENABLE_ASSERTIONS=ON -G "Ninja" ../llvm
ninja
Read more »

ElementryOS mouch pad Using it like a Mac Touch Gestures (Loki,Juno)

작성일 2021-02-11 | In linux
Reading time 0

About

가끔 파이썬 환경을 격리 할 필요가 있다. 이런 상황에서 virtualenv는 큰 도움이 된다.

Read more »

Logitech MX anywhere 2s 우분투에서 제스쳐 사용하기

작성일 2021-02-11 | In linux
Reading time 1

Logitech 마우스는 options 라는 소프트웨어를 기본적으로 제공하여 키맵변경 logitech flow 등 많은 기능을 사용할 수 있다. 그러나 options 가 mac과 windows에서만 제공하는 바람에 9만원이나 하는 마우스가 그냥 돌덩이가 되어버렸다. 그러나 역시 리눅스에서 사용할 수 있는 방법이 있었다.

Read more »

ubuntu에서 parallel gzip사용하여 빠르게 압축하기(pigz)

작성일 2021-02-11 | In linux
Reading time 0

Pigz?

최근 많은 디바이스가 멀티코어를 사용하며 많은 프로그램이 멀티코어, 멀티프로세서를 이용하도록 작성되고있다. 이러한 흐름에 맞추어 압축프로그램인 gzip 을 멀티코어를 사용하도록 개발하는 프로젝트인 pigz를 이용하면 빠른 압축을 진행 할 수 있다.

Read more »

Ubuntu pdf 를 이미지로 변환

작성일 2021-02-11 | In linux
Reading time 0

About

Pdf 를 이미지로 변환해야할 일이 종종 있어 구글에서 검색되는 사이트를 이용하곤 하지만 많은 양의 pdf 를 변환해야 하거나 개인정보가 있는 데이터를 서버에 올리기 꺼림직 한 경우가 있다 이럴때 터미널에서 직접 pdf 를 변환해보자. pdftoppm 를 이용할 것이며 다음과 같이 변환 하면 된다.

Example

pdftoppm filename.pdf output_name options
Read more »

ubuntu 16.04 python3 opencv 3.4 설치

작성일 2021-02-11 | In linux
Reading time 1

기존 설치된 패키지 업데이트

Read more »

jupyter notebook 다른python이 실행될 시

작성일 2021-02-11 | In linux
Reading time 0

jupyter notebook에서 python3 를 실행하였는데 python2 커널이 계속 실행되었는데 아래외 같이 해결하면 된다.

ipython3 kernel install

references

Read more »

inplace_swap

작성일 2021-02-11 | In linux
Reading time 0
void inplace_swap(int *x,int *y)
{
 *y=*x^*y;
 *x=*x^*y;
 *y=*x^*y;
 }
Read more »

ElementryOS mouch pad Using it like a Mac Touch Gestures (Loki,Juno)

작성일 2021-02-11 | In linux
Reading time 0

Adding Gestures

Read more »

docker tag 검색하기

작성일 2021-02-11 | In linux
Reading time 0

도커에서 이미지를 검색할시는 아래처럼 도커의 내장명령어를 사용하면 된다

docker search images

그런데 tag검색은 당연히 있을줄 알았는데 존재하지 않아서 당황스러웠다. 다행히도 찾는 방법이 존재하였다.

Read more »
1 … 48 49 50
류재훈

류재훈

495 포스트
34 카테고리
247 태그
RSS
e-mail Linkedin
0%
© 2020 - 2025 류재훈
Powered by Jekyll
Theme - NexT.Mist