Thank you for your response.
Yes, I am using CUDA MAGMA 1.5.0 (final), and I am using CMake (version 3.0.1).
When I use CMake following the steps in "README-Windows", it gives me the error message
Code: Select all
CMake Error at CMakeLists.txt:4 (project):
No CMAKE_Fortran_COMPILER could be found.
I am using INTEL Parallel Studio XE 2015 with MKL and Fortran compiler.
And I found some helps on stack overflow
http://stackoverflow.com/questions/2225 ... s-7-64-bit
Add
Code: Select all
SET (CMAKE_Fortran_COMPILER_FORCED true)
to CMakeList.txt then manually specify the path for Intel Fortran Compiler (D:/Intel/Composer XE 2015/bin/ia32/ifort.exe)
Then the CMake went through.
But, when I try to build the solution, the error mentioned earlier appears.
Hope this information could help you identify the problem of me.
Thank you!