Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
hoshinohikari committed Jan 15, 2024
1 parent 4985e51 commit d0e8d22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NVEncCore/NVEncFilterResize.cu
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ const TCHAR *NVRTC_BUILTIN_DLL_NAME_TSTR = _T("nvrtc-builtins64_116.dll");
#elif __CUDACC_VER_MAJOR__ == 11 && __CUDACC_VER_MINOR__ == 7
const TCHAR *NVRTC_DLL_NAME_TSTR = _T("nvrtc64_117_0.dll");
const TCHAR *NVRTC_BUILTIN_DLL_NAME_TSTR = _T("nvrtc-builtins64_117.dll");
#elif __CUDACC_VER_MAJOR__ == 11 && __CUDACC_VER_MINOR__ == 8
const TCHAR* NVRTC_DLL_NAME_TSTR = _T("nvrtc64_112_0.dll");
const TCHAR* NVRTC_BUILTIN_DLL_NAME_TSTR = _T("nvrtc-builtins64_118.dll");
#elif __CUDACC_VER_MAJOR__ == 12 && __CUDACC_VER_MINOR__ == 0
const TCHAR *NVRTC_DLL_NAME_TSTR = _T("nvrtc64_120_0.dll");
const TCHAR *NVRTC_BUILTIN_DLL_NAME_TSTR = _T("nvrtc-builtins64_120.dll");
Expand Down
2 changes: 1 addition & 1 deletion cudaver.props
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<CUDA_MINOR_VER>8</CUDA_MINOR_VER>
<CUDA_VER>$(CUDA_MAJOR_VER).$(CUDA_MINOR_VER)</CUDA_VER>
<CUDA_CODE_GEN>compute_50,compute_50;compute_61,compute_61;compute_75,compute_75;compute_86,compute_86</CUDA_CODE_GEN>
<NVRTC_DLL_NAME>nvrtc64_118_0.dll</NVRTC_DLL_NAME>
<NVRTC_DLL_NAME>nvrtc64_112_0.dll</NVRTC_DLL_NAME>
</PropertyGroup>
<PropertyGroup Label="UserMacros" Condition="'$(CUDA_PATH)' == '$(CUDA_PATH_V12_0)'" >
<CUDA_MAJOR_VER>12</CUDA_MAJOR_VER>
Expand Down

0 comments on commit d0e8d22

Please sign in to comment.