diff src/parallel_execution/examples/twice/main.cbc @ 413:497b154141de

Call CUDAExec by twice_stub
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Thu, 14 Sep 2017 22:28:52 +0900
parents 0eba9a04633f
children 7679093bdd72
line wrap: on
line diff
--- a/src/parallel_execution/examples/twice/main.cbc	Thu Sep 14 19:11:25 2017 +0900
+++ b/src/parallel_execution/examples/twice/main.cbc	Thu Sep 14 22:28:52 2017 +0900
@@ -97,11 +97,7 @@
 
     par goto createArray(array, __exit);
 
-    if(gpu_num) {
-        par goto CUDAtwice(array, iterate(split), __exit);
-    } else {
-        par goto twice(array, iterate(split), __exit);
-    }
+    par goto twice(array, iterate(split), __exit);
     goto code2();
 }