gpt4 book ai didi

cuda - CUDA上的“incorrect inclusion of a cudart header”错误

转载 作者:行者123 更新时间:2023-12-02 10:45:34 27 4
gpt4 key购买 nike

为了进行数学运算,我添加了头文件

#include <math_functions.h>
#include <device_functions.h>

但是当我编译它时,它开始出现以下错误。我该怎么办?

p.s .: CUDA 5.0,VS2010

NVIDIA GPU Computing Toolkit\CUDA\v5.0\include\crt/func_macro.h(50): fatal error C1189: #error : -- incorrect inclusion of a cudart header file

最佳答案

您只需要将#include“math_functions.h”包裹在#define和#undef中,如下所示:

#define __CUDA_INTERNAL_COMPILATION__
#include "math_functions.h"
#undef __CUDA_INTERNAL_COMPILATION__

并且似乎math_functions.h可能未包含在.cpp文件中。

关于cuda - CUDA上的“incorrect inclusion of a cudart header”错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16035401/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com