我正在尝试使用LiteIDE来运行程序:
// cudatest
package cudatest
import (
"fmt"
"github.com/barnex/cuda5/cu"
)
func main() {
fmt.Println("Hello, your GPU is:", cu.Device(0).Name())
}
我得到的只是:
c:/go/bin/go.exe build -i [C:/godev]
# github.com/barnex/cuda5/cu
c:\GoDev\src\github.com\barnex\cuda5\cu\context.go:5:18: fatal error: cuda.h: No such file or directory
//#include <cuda.h>
^
compilation terminated.
Error: process exited with code 2.
我安装了最新的NVIDIA CUDA SDK。为了让Go编译器看到它我需要做什么?
答案 0 :(得分:1)
看起来你的C编译器不知道哪个目录有cuda头文件。你可以告诉我使用CGO_CPPFLAGS
环境变量为C编译器提供额外的选项。您可能希望将其设置为
CGO_CPPFLAGS="-isystem /path/to/dir/with/cuda/header/in/it"