标签: openmp xeon-phi offloading
我的项目有问题。我尝试从CPU发送数据独立于xeon phi。
int test=5; #pragma offload target(mic0) in(test) { test=3; } printf("test equals %i", test);
结果是3.我不明白,测试不应该等于5?