5

以下代码无法编译。错误消息是:

错误一:

error C3930: 'foo' : no overloaded function has restriction specifiers that are compatible with the ambient context ''

错误2:

error C2660: 'f1' : function does not take 0 arguments

错误 3:

IntelliSense: amp-restricted function "int foo() restrict(amp)" (declared at line 5) must be called from an amp-restricted function

该程序:

#include <amp.h>
#include <iostream>
using namespace std;

int foo() restrict(amp) { return 5; }

int f1(int x = foo()) restrict(amp) {
  return x;
}

int main()
{
  using namespace concurrency;

  int a[10] = {0};
  array_view<int> av(10, a);

  parallel_for_each(av.extent, [=](index<1> i) restrict(amp) {
    av[i] = f1();
  });

  for(unsigned i=0; i<10; ++i) {
    cout << av[i] << "\n";
  }
  return 0;
}

奇怪的是,当我删除restrict(amp)on并将lambda 中foo()的调用替换为 时,程序编译得很好。那么 amp 函数的默认参数中的函数调用规则是什么?f1()5

4

1 回答 1

2

MSDN 论坛回答了这个问题。

我们选择的默认参数的语义与 C++ 的总体前提一致,即程序的解析是在一次从左到右的过程中完成的(尽管该规则很少有明显的例外,尤其是成员函数) - 因此,因为在函数参数声明之后读取限制说明符,位于默认参数表达式中的任何函数调用都根据“外部”限制说明进行绑定,无论好坏。换句话说,您从一开始就使用 cpu-restriction “active”(因为它是默认的)阅读程序,然后将“restrict(X)”和“}”之间的所有内容切换到限制 X,从而关闭相关范围。

于 2012-12-02T01:29:12.837 回答