//Header file A.h
#include "cuda_runtime.h"
#include "device_launch_parameters.h"
class A
{
__host__ __device__ void move();
}
//cu file A.cu
#include "A.h"
{
__host__ __device__ void A::move()
{
...
}
}
A.cu
从另一个文件调用文件中定义的方法时.cu
,我收到以下错误:
External calls are not supported (found non-inlined call to ...),
我正在使用sm_10
编译选项。