Skip to content
Snippets Groups Projects
Commit 60372a86 authored by Panos Adamidis's avatar Panos Adamidis Committed by Joerg Behrens
Browse files

Disable 1c use case (2d view no longer works)

parent 2ee992ae
No related branches found
No related tags found
No related merge requests found
......@@ -119,6 +119,7 @@ void scenario_1c(double* array, int nblocks, int nlev, int nproma) {
}
#if 0
void scenario_1cmacro(double* array, int nblocks, int nlev, int nproma) {
std::cout << "scenario 1cmacro: +ACC CPU:LayoutLeft GPU:LayoutLeft; as ICON pointer view(array, ncells, nlev); d_view(jc, jk) ----- " << std::endl;
......@@ -146,6 +147,7 @@ void scenario_1cmacro(double* array, int nblocks, int nlev, int nproma) {
printf("Time = %f ms\n\n", timer.seconds() * 1000);
}
#endif
void scenario_2(double* array, int nblocks, int nlev, int nproma, bool print = true) {
......@@ -635,10 +637,13 @@ int main() {
openacc_calls(array, nblocks, nlev, nproma, s_1c);
memset(array, 0.0, sizeof(array));
#if 0
std::function<void(double*, int, int, int)> s_1cmacro = scenario_1cmacro;
openacc_calls(array, nblocks, nlev, nproma, s_1cmacro);
memset(array, 0.0, sizeof(array));
#endif
std::function<void(double*, int, int, int)> s_7b = scenario_7b;
openacc_calls(array, nblocks, nlev, nproma, s_7b);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment