티스토리챌린지(4)
-
PPT 꿀팁
외우자 단축키Shift + E = 스포이드Shift + R + R = 개체 맨 앞으로아이콘 사이트https://www.flaticon.com/
2024.11.27 -
cuda stream priority
priority range checkint main(int argc, char** argv) { int a, b; cudaDeviceGetStreamPriorityRange(&a, &b); printf("%d to %d\n", a, b); return -1;} cudaStreamCreateWithPriority ( cudaStream_t* pStream, unsigned int flags, int priority ) cudaStreamCreateWithPriority(&mystream, cudaStreamDefault, -1);
2024.11.19 -
맥가상환경 설정
맥에서의 가상환경설정 python3 -m venv ./source ./bin/activate
2024.11.11 -
NCU captures
위 그림은 Nsight Compute로 프로파일링 했을 때의 결과이다. L1 Throughput이 가장 높아 Multistream 실행 시 가장 Interf가 높다.
2024.11.08