changeset 523:e28e3bd6b181

Replace goto meta for MultiDimIterator
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Sun, 21 Jan 2018 22:30:44 +0900
parents bc1616e1e172
children 3bb5da57ddb5
files src/parallel_execution/MultiDimIterator.cbc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/parallel_execution/MultiDimIterator.cbc	Tue Jan 16 16:38:16 2018 +0900
+++ b/src/parallel_execution/MultiDimIterator.cbc	Sun Jan 21 22:30:44 2018 +0900
@@ -57,7 +57,7 @@
 __code execMultiDimIterator(struct MultiDimIterator* iterator, struct Context* task, int numGPU, __code next(...)) {
     // No GPU device
     if (numGPU == 0) {
-        goto meta(context, C_execMultiDimIterator1);
+        goto execMultiDimIterator1();
     }
     task->iterate = 1;
     task->gpu = 1;
@@ -85,7 +85,7 @@
             }
         }
     }
-    goto meta(context, C_execMultiDimIterator1);
+    goto execMultiDimIterator1();
 }
 
 __code barrierMultiDimIterator(struct MultiDimIterator* iterator, struct Context* task, __code next(...), __code whenWait(...)) {