39 lines
1.4 KiB
Batchfile
39 lines
1.4 KiB
Batchfile
@echo off
|
|
|
|
ctime -begin timeBuild.ctm
|
|
|
|
@rem /WX /W4 /wd4201 /wd4100 /wd4189 /wd4244 /wd4127 /wd4456
|
|
@rem set CommonCompilerFlags="/nologo /Zi /FC"
|
|
set CommonCompilerFlags=/nologo /Zi /FC /Od
|
|
@rem /WX /W4 /wd4201 /wd4100 /wd4189 /wd4244 /wd4127 /wd4456
|
|
@rem
|
|
@rem
|
|
|
|
set cuda_root=D:/lib/cudatoolkit/lib/x64
|
|
|
|
set mkl_root=D:/lib/oneAPI_mkl/mkl/2021.3.0
|
|
set mkl_core=%mkl_root%/lib/intel64/mkl_core.lib
|
|
set mkl_intel_lp64=%mkl_root%/lib/intel64/mkl_intel_lp64.lib
|
|
set mkl_intel_thread=%mkl_root%/lib/intel64/mkl_intel_thread.lib
|
|
set MKLCOMPILER=D:/lib/oneAPI_mkl/compiler/2021.3.0/windows/compiler
|
|
set libiomp5md=%MKLCOMPILER%/lib/intel64_win/libiomp5md.lib
|
|
|
|
set CudaSources=../src/cuda_entry_point.cu
|
|
set CudaObj=cuda_entry_point.obj
|
|
set Sources=../src/main.c
|
|
|
|
IF NOT EXIST .\build mkdir .\build
|
|
pushd .\build
|
|
rem cl /c %CommonCompilerFlags% %Sources% /I"%mkl_root%\include"
|
|
rem FOR MSVC /link %mkl_core% %mkl_intel_lp64% %mkl_intel_thread% %libiomp5md%
|
|
nvcc -c %CudaSources% -o %CudaObj% -g -G -lcusolver
|
|
rem nvcc -o program.exe -lcusolver -L%mkl_root%/lib/intel64 -lmkl_core -lmkl_intel_lp64 -lmkl_intel_thread -l%MKLCOMPILER%/lib/intel64_win/libiomp5md
|
|
cl %CommonCompilerFlags% %Sources% /I"%mkl_root%\include" /link %CudaObj% %cuda_root%/cudart.lib %cuda_root%/cusolver.lib %mkl_core% %mkl_intel_lp64% %mkl_intel_thread% %libiomp5md%
|
|
set LastError=%ERRORLEVEL%
|
|
popd
|
|
|
|
ctime -end timeBuild.ctm %LastError%
|
|
IF NOT %LastError%==0 GOTO :end
|
|
|
|
:end
|