cuda 10.2 in Qt 5.14 ubuntu 18.04
Solved
General and Desktop
-
@Gerd said in cuda 10.2 in Qt 5.14 ubuntu 18.04:
cuda.CONFIG += no_link
Hi @Gerd
Thank you so so much.
My old error now gone with your solution.
Now i have this error :error: static assertion failed: unimplemented for this system # define THRUST_STATIC_ASSERT_MSG(B, msg) static_assert(B, msg)
what means system here ? does it mean my local system ?
Do you have a solution for this issue ?
Thanks in advance -
@Naser-0 said in cuda 10.2 in Qt 5.14 ubuntu 18.04:
what means system here ?
The system you're building for
-
looking somewhat deeper in your code i found this:
#include <cuda_code.cu>
why did you do that?
with this line the cu code is included here and compiled with the regular c-compiler.
this leads to the error messages you see.remove that line from your main.cpp, use the following .pro-file and try again
QT -= gui QT += core CONFIG += c++11 console CONFIG -= app_bundle DEFINES += QT_DEPRECATED_WARNINGS qnx: target.path = /tmp/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target DESTDIR = $$system(pwd) OBJECTS_DIR = $$DESTDIR/Obj # C++ flags QMAKE_CXXFLAGS_RELEASE =-03 CUDA_SOURCES += cuda_code.cu SOURCES += main.cpp CUDA_DIR = /usr/local/cuda INCLUDEPATH += $$CUDA_DIR/include QMAKE_LIBDIR += $$CUDA_DIR/lib64 LIBS += -lcudart -lcuda CUDA_ARCH = sm_61 # Yeah! I've a new device. Adjust with your compute capability # Here are some NVCC flags I've always used by default. NVCCFLAGS = --compiler-options -fno-strict-aliasing -use_fast_math --ptxas-options=-v CUDA_INC = $$join(INCLUDEPATH,' -I','-I',' ') cuda.commands = $$CUDA_DIR/bin/nvcc -m64 -O3 -arch=$$CUDA_ARCH -c $$NVCCFLAGS \ $$CUDA_INC $$LIBS ${QMAKE_FILE_NAME} -o ${QMAKE_FILE_OUT} \ 2>&1 | sed -r \"s/\\(([0-9]+)\\)/:\\1/g\" 1>&2 cuda.dependency_type = TYPE_C cuda.depend_command = $$CUDA_DIR/bin/nvcc -O3 -M $$CUDA_INC $$NVCCFLAGS ${QMAKE_FILE_NAME}| sed \"s/^.*: //\" cuda.input = CUDA_SOURCES cuda.output = $${OBJECTS_DIR}/${QMAKE_FILE_BASE}$${QMAKE_EXT_OBJ} QMAKE_EXTRA_COMPILERS += cuda ```
-