运行 shell 脚本中的命令
Running Command in a shell script
我正在尝试通过 运行 在 shell 脚本中执行命令来执行 opencl 程序。
时,我 运行 命令行上的命令 运行 没有任何错误。
但是当我在 shell 脚本中 运行 它抛出错误 -
icpc command not found
这是我的 shell 脚本
#!/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
我正在尝试通过 运行 在 shell 脚本中执行命令来执行 opencl 程序。 时,我 运行 命令行上的命令 运行 没有任何错误。 但是当我在 shell 脚本中 运行 它抛出错误 -
icpc command not found
这是我的 shell 脚本
#!/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