ubuntu16.04pytorch0.4+ctc 구성

853 단어 인공지능
1. pytorch 환경 만들기
conda create -n pytorch python=3.6
2,pytorch0을 설치합니다.4
conda install pytorch=0.4.0 cuda80 -c pytorch
3. 컴파일ctc
git clone https://github.com/SeanNaren/warp-ctc.git
cd warp-ctc
mkdir build; cd build
cmake ..
make

컴파일 과정에서 문제가 생기지 않지만,
cd pytorch_binding
python setup.py install

이 프로세스에 문제가 발생할 수 있습니다.
/home/sobhe/repo/warp-ctc/pytorch_binding/src/binding.cpp:105:61: error: too few arguments to function ‘cudaError_t THCudaMalloc(THCState*, void**, size_t)
파일 수정 "pytorch binding/src/binding.cpp"1 at 92 line int probssize = THCudaTensor_size(state, probs, 2); 2 at l05 lines void* gpu_workspace; THCudaMalloc(state, &gpu_workspace, gpu_size_bytes);
다시 실행:
cd pytorch_binding
python setup.py install
축하합니다, 성공했습니다.

좋은 웹페이지 즐겨찾기