我正在尝试通过在shell脚本中运行命令来执行opencl程序。当 ,我在命令行上运行命令时,它会运行而没有任何错误。但是当我在 shell 脚本中运行它时,它会抛出错误 -
icpc command not found
这是我的外壳脚本
#!/bin/csh
foreach t (1024 4096 8192 32768 50000 100000 500000 1000000 2000000 3000000 4000000 5000000 6000000 7000000 8000000)
foreach l (8 16 32 64 128 256 512)
icpc -o first first.cpp -no-vec /scratch/cuda-7.0/lib64/libOpenCL.so -lm -openmp -DNMB=$t -DLOCAL_SIZE=$l
./first
end
end
任何人都可以帮我修复它吗
在 shell 脚本中指定 icpc 的完整路径 – algor