Failed to complile MEX-Functions Containing CUDA Code
이전 댓글 표시
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
Joss Knight
2014년 12월 16일
I presume you are running in MATLAB R2014b?
Please can you compile with the -v verbose flag and provide the full output.
mex -v -largeArrayDims mexGPUExample.cu
It looks like whatever you did to set your compiler didn't work because your compiler has linked against libstdc++. One workaround you might try is to add that library (-lstdc++).
Shaojun
2014년 12월 16일
Joss Knight
2014년 12월 22일
What is the output of !/usr/bin/g++ --version?
채택된 답변
추가 답변 (2개)
Kai
2015년 2월 17일
0 개 추천
I met withe exactly the same problem. Did you finally figure out a solution?
Thanks in advance!
Jan Barowski
2015년 2월 25일
0 개 추천
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!
카테고리
도움말 센터 및 File Exchange에서 Get Started with GPU Coder에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!