how to compile cuda with mex where i dont have parallel toolbox

1 回表示 (過去 30 日間)
Michaelscheinfeild
Michaelscheinfeild 2016 年 10 月 26 日
回答済み: Joss Knight 2016 年 10 月 31 日
i have matlab 2015 i want to make mex from cuda file , i dont have the parallel toolbox
setenv('MW_NVCC_PATH','/usr/local/CUDA/bin')
mex mexGPUExample.cu
*Building with 'NVIDIA CUDA Compiler'.
Error using mex
LINK : fatal error LNK1181: cannot open input file 'gpu.lib'*

採用された回答

Joss Knight
Joss Knight 2016 年 10 月 31 日
You can't build CUDA kernels using mex without Parallel Computing Toolbox. This requires the NVIDIA compiler nvcc and the infrastructure to call that from mex is only provided with PCT.
You need to build your device code into a separate library independently of MATLAB and built using nvcc, and then write mex functions that link to it using the -l option.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGPU Computing についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by