본문 바로가기

Other6

ubuntu, 여러 conda environment 에 다른 쿠다 버전 설치 기본적으로 다른 드라이버 설치 되어있고, 여러 쿠다 버전 쓰고 싶다는 가정함여기서는 cuda 11 들이 설치되어있는 환경에 12를 추가할 것임 1.  CUDA 설치 https://developer.nvidia.com/cuda-toolkit-archive CUDA Toolkit ArchivePrevious releases of the CUDA Toolkit, GPU Computing SDK, documentation and developer drivers can be found using the links below. Please select the release you want from the list below, and be sure to check www.nvidia.com/drivers for mo.. 2024. 6. 10.
rsync 특정 postfix나 이름으로 rsync -zarv --include "*/" --include="*.obj" --exclude="*" SOURCE_PATH TARGET_PATH - z: data compres - a: file 세부 정보 보존 (owner, permission 등등.) - r: recursive - v: 자세하게 로그 출력 2023. 3. 17.
if statement making list with for loop two uses [key for key in data.keys() if data[key]['column_A'] is not None] In this case we don't need to specify else and the logic only make output with keys with True value. [key if data[key]['column_A'] is not None else 'value_B' for key in data.keys()] In this case you need to specify else statement or you got some error. -> you need to delete value_B if you don't need the value 2022. 10. 25.
‘CUSPARSE_SPMV_ALG_DEFAULT’ was not declared in this scope Error 해결 필자는 기존에 CUDA 11.1 + pytorch3d 1.9.0 을 사용하여 개발을 진행하고 있었다. colmap 어플리케이션을 활용하기 위해 Ubuntu 20.04에 colmap을 설치하던 와중 다음 가이드 사용 - (https://colmap.github.io/install.html) Installation — COLMAP 3.8 documentation COLMAP builds on all major platforms (Linux, Mac, Windows) with little effort. First, checkout the latest source code: The latest stable version lives in the master branch and the latest developme.. 2022. 8. 30.