我的项目有问题 . 我尝试从CPU发送数据独立于xeon phi .

int test=5;

#pragma offload target(mic0) in(test)
{
    test=3;
}
printf("test equals %i", test);

结果是3.我不明白这个,测试不应该等于5?