Michael Jin
Michael Jin
Hey, I think I have found a solution to this problem for Linux. I have developed a solution that works on Windows 7 64 bit: Initially, the zGEMM function on...
The following code I used was copied from [test_zgemm.jl](https://github.com/mikhail-j/OpenCLBLAS.jl/blob/master/src/test_zgemm.jl). I have aliased clblasDoubleComplex to Complex{Float64} in [clblas_typedef.jl](https://github.com/mikhail-j/OpenCLBLAS.jl/blob/master/src/clblas_typedef.jl) as CLBLAS.jl does too. ``` Julia const libclblas = Libdl.find_library(["clBLAS","libclBLAS"],["C:\\AMD\\clBLA-2.10.0\\bin","C:\\AMD\\acml6.1.0.33\\ifort64\\lib\\"]) #const libopencl =...
I came across the possible solution when I started writing these wrapper ccall functions myself. I found that some functions threw a segmentation fault if I passed a normal variable...