공부한 것 정리(17)
-
리눅스 (내가쓰는) 명령어 모음집
- 현재 디렉토리 아래 파일(디렉토리 X)만 갯수 세기 ls -l | grep ^- | wc -l
2023.03.02 -
nvidia-smi 의 cuda 버전과 nvcc -V의 cuda 버전이 다른 이유
이유 : CUDA는 Driver API, runtime API 두 API를 가지고 있고, 둘이 각각 버전이 있음. nvidia 공식문서 ref : https://docs.nvidia.com/cuda/cuda-runtime-api/driver-vs-runtime-api.html Driver API를 위한 libcuda.so는 GPU 드라이버 설치할 때 (ex. nvidia-driver ... ) 설치되고 runtime API를 위한 건 cuda toolkit 설치할 때 설치된다고 함. 그래서 pytorch 설치할 때 명령어 무지성 복붙하여 cuda toolkit도 설치하면 헷갈리게 되는 것 정리하면 nvidia-smi : GPU 드라이버 설치할 때 설치된 CUDA nvcc -V : cuda toolkit ..
2023.01.13 -
[texture] 3D obj에서 segmenation 기반 texture stiching github
GitHub - thmoa/semantic_human_texture_stitching: This repository contains texture stitching code corresponding to the paper Detailed Human Avatars from Monocular Video.
2022.09.29 -
[error] git 심볼릭링크 포함 레포 clone 안됨
git clone --recursive 레포 주소 -> 심볼릭 링크 및 서브모듈을 포함하는 저장소 다운 -> 단순 git clone 시 최상위 레포만 clone됨
2022.07.19 -
[boj] 2579 계단 오르기 python
한칸씩 연속 3회는 올라올 수 없음 -> i번째 계단 직전에 밟을 수 있는 경우의 수 1,1,2 1,2 2 1,1 1 -> "결국 직전칸에서 올라온 것 vs 2칸 전에서 올라온 것" 으로 식 세울 수 있음 import sys input = sys.stdin.readline n = int(input().strip()) stairs = [int(input().strip()) for _ in range(n)] dp = [0 for _ in range(n+1)] if n>=3: dp[0] = stairs[0] dp[1] = stairs[0]+stairs[1] dp[2] = max(stairs[0]+stairs[2],stairs[1]+stairs[2]) for i in range(3,n): dp[i] = max(..
2022.02.14 -
[mySQL] 코테 대비 SQL 연습 사이트
난이도순 1. 프로그래머스 https://programmers.co.kr/learn/challenges 코딩테스트 연습 기초부터 차근차근, 직접 코드를 작성해 보세요. programmers.co.kr 2. 해커랭크 https://www.hackerrank.com/domains/sql Solve SQL Code Challenges A special-purpose language designed for managing data held in a relational database. www.hackerrank.com 3. sql zoo https://sqlzoo.net/wiki/SQL_Tutorial SQLZOO sqlzoo.net -------------------------------------------..
2022.02.10