when i compiling project i get issue C2338 "container element type and array view element type must match"
namespace ccy = concurrency;
using namespace std;
///
...
///
vector <vector<int>> a(n, vector<int>(n, 0));
ccy::array_view <const int, 2> aGPU(n, n, a);
what am I doing wrong?