0
我想在配置過程中測試一些典型的cuda功能。我怎樣才能在我的configure.ac中編寫它?例如:是否可以使用autoconf檢查nvcc編譯?
AC_TRY_COMPILE([],
[
__global__ static void test_cuda() {
const int tid = threadIdx.x;
const int bid = blockIdx.x;
__syncthreads();
}
],
[cuda_comp=ok],[cuda_comp=no])
但是AC_LANG中未定義nvcc。我必須創建自己的m4宏嗎?
非常感謝。這是一個普通的autotools答案,但這正是我需要的。 – 2009-12-31 12:27:28