0

我在 Mac OS 上安装了 Intel 并行工作室并使用 daal 来构建我的文件。设置变量并运行后,

daalvars.sh intel64
icc my_first_daal_program.cpp -daal=parallel -o my_first_daal_program

我收到以下错误

my_first_daal_program.cpp(1): catastrophic error: cannot open source file "daal.h"
#include <daal.h>
                ^
compilation aborted for my_first_daal_program.cpp (code 4)

这是否意味着没有找到头文件?

4

1 回答 1

1

您应该像这样设置环境:

. daalvars.sh intel64

使设置对以下命令保持可见。

于 2017-05-25T15:01:31.320 回答