Failed to complile MEX-Functions Containing CUDA Code
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Shaojun
le 16 Déc 2014
Réponse apportée : Jan Barowski
le 25 Fév 2015
I am trying to compile the MATLAB provided example file mexGPUExample.cu following:
The "Set Up for MEX-File Compilation part" was fine. I copied the mex_CUDA_glnxa64.xml file to the current folder and run setenv command.
Then I start to compile mexGPUExample.cu by executing
mex -largeArrayDims mexGPUExample.cu
After it run for a few seconds it got the error message:
Building with 'nvcc'.
Error using mex
/usr/lib/x86_64-linux-gnu/libc_nonshared.a(atexit.oS): In function
`atexit': (.text+0x12): undefined reference to `__cxa_atexit'
collect2: error: ld returned 1 exit status
My Machine is Ubuntu 14.04 with gcc 4.8.2 and g++ 4.8.2 The output of gpuDevice is attach in the file.
In order to compatible with mex compile requirement(matlab only support gcc-4.7.x), I set the system default compiler as gcc 4.7 and g++ 4.7 use the method described below:
How to change the default GCC compiler in Ubuntu?
and my output of gpuDevice is: CUDADevice with properties:
Name: 'GeForce GTX 650'
Index: 1
ComputeCapability: '3.0'
SupportsDouble: 1
DriverVersion: 6.5000
ToolkitVersion: 6
MaxThreadsPerBlock: 1024
MaxShmemPerBlock: 49152
MaxThreadBlockSize: [1024 1024 64]
MaxGridSize: [2.1475e+09 65535 65535]
SIMDWidth: 32
TotalMemory: 1.0734e+09
AvailableMemory: 490971136
MultiprocessorCount: 2
ClockRateKHz: 1110500
ComputeMode: 'Default'
GPUOverlapsTransfers: 1
KernelExecutionTimeout: 1
CanMapHostMemory: 1
DeviceSupported: 1
DeviceSelected: 1
When I searching for the solutions I only found 2 posts waiting for answer desperately. Lots of thanks to any one who can give a hand. >"<
3 commentaires
Réponse acceptée
Joss Knight
le 22 Déc 2014
The problem appears to be that you're using a more recent version of the CUDA Toolkit than is supported by MATLAB. You are using version 6.5, whereas R2014b only supports version 6.0. You are therefore using an incompatible version of nvcc.
Make sure you've got CUDA 6.0 installed, then set MW_NVCC_PATH to point to it:
>> setenv MW_NVCC_PATH /usr/local/cuda-6.0/bin
Then try again.
1 commentaire
Samarth
le 5 Fév 2015
Thanks for your suggestion. I installed CUDA 6.0 and modified MW_NVCC_PATH, but the error persists. Do you have any more ideas?
Thanks!
Plus de réponses (2)
Kai
le 17 Fév 2015
I met withe exactly the same problem. Did you finally figure out a solution?
Thanks in advance!
0 commentaires
Jan Barowski
le 25 Fév 2015
I got the same error using Matlab 2015 Prerelease on Ubuntu 14.04 with CUDA 6.5 and g++4.8. Thanks to Matlab support we figured out, that manually linking does the trick. Here is my compile script for the matlab mex/gpu example:
myArch = computer('arch'); pathToOpts = fullfile(matlabroot, ... 'toolbox', 'distcomp', 'gpu', ... 'extern', 'src', 'mex', myArch,'gcc',... ['mex_CUDA_' myArch '.xml']); copyfile(pathToOpts,'.','f')
mex -v -largeArrayDims mexGPUExample.cu -lstdc++ -lc
Hope this helps!
0 commentaires
Voir également
Catégories
En savoir plus sur Get Started with GPU Coder dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!