changeset 571:d9c3bccaa13c

add semiron..
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 24 Nov 2019 22:55:33 +0900
parents 1233236c244d
children 3c35bcb82f08
files src/parallel_execution/plautogen/impl/CUDAWorker.h src/parallel_execution/plautogen/impl/RedBlackTree.h src/parallel_execution/plautogen/impl/TaskManagerImpl.h src/parallel_execution/plautogen/interface/Allocate.h src/parallel_execution/plautogen/interface/Main.h src/parallel_execution/plautogen/interface/RotateTree.h src/parallel_execution/tmp_tool/parse_cerate_each_context.pl
diffstat 7 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/parallel_execution/plautogen/impl/CUDAWorker.h	Sun Nov 24 22:54:35 2019 +0900
+++ b/src/parallel_execution/plautogen/impl/CUDAWorker.h	Sun Nov 24 22:55:33 2019 +0900
@@ -7,7 +7,7 @@
   int deviceNum;
   struct Queue* tasks;
   int runFlag;
-  __code next(...)
+  __code next(...);
   int numStream;
   struct Executor* executor;
   CUstream *stream;
--- a/src/parallel_execution/plautogen/impl/RedBlackTree.h	Sun Nov 24 22:54:35 2019 +0900
+++ b/src/parallel_execution/plautogen/impl/RedBlackTree.h	Sun Nov 24 22:55:33 2019 +0900
@@ -6,6 +6,6 @@
   struct Node* parent;
   struct Node* grandparent;
   struct Stack* nodeStack;
-  __code findNodeNext(...)
+  __code findNodeNext(...);
   int result;
 } RedBlackTree;
--- a/src/parallel_execution/plautogen/impl/TaskManagerImpl.h	Sun Nov 24 22:54:35 2019 +0900
+++ b/src/parallel_execution/plautogen/impl/TaskManagerImpl.h	Sun Nov 24 22:55:33 2019 +0900
@@ -1,5 +1,5 @@
 typedef struct TaskManagerImpl <Type, Isa> impl TaskManager {
-  __code next(...)
+  __code next(...);
   int numWorker;
   int sendCPUWorkerIndex;
   int sendGPUWorkerIndex;
--- a/src/parallel_execution/plautogen/interface/Allocate.h	Sun Nov 24 22:54:35 2019 +0900
+++ b/src/parallel_execution/plautogen/interface/Allocate.h	Sun Nov 24 22:55:33 2019 +0900
@@ -1,4 +1,4 @@
 typedef struct Allocate <Type, Impl> {
-  __code next(...)
+  __code next(...);
   long size;
 } Allocate;
--- a/src/parallel_execution/plautogen/interface/Main.h	Sun Nov 24 22:54:35 2019 +0900
+++ b/src/parallel_execution/plautogen/interface/Main.h	Sun Nov 24 22:55:33 2019 +0900
@@ -1,5 +1,5 @@
 typedef struct Main <Type, Impl> {
-  __code code(...)
-  __code next(...)
+  __code code(...);
+  __code next(...);
   struct Queue* args;
 } Main;
--- a/src/parallel_execution/plautogen/interface/RotateTree.h	Sun Nov 24 22:54:35 2019 +0900
+++ b/src/parallel_execution/plautogen/interface/RotateTree.h	Sun Nov 24 22:55:33 2019 +0900
@@ -1,5 +1,5 @@
 typedef struct RotateTree <Type, Impl> {
-  __code next(...)
+  __code next(...);
   struct RedBlackTree* traverse;
   struct Tree* tree;
 } RotateTree;
--- a/src/parallel_execution/tmp_tool/parse_cerate_each_context.pl	Sun Nov 24 22:54:35 2019 +0900
+++ b/src/parallel_execution/tmp_tool/parse_cerate_each_context.pl	Sun Nov 24 22:55:33 2019 +0900
@@ -100,7 +100,7 @@
   my $space = "  ";
   for my $co (@$contents) {
     if ($co =~ /enum\s*Code\s*(\w+)/) {
-      $str .= "${space}__code $1(...)\n";
+      $str .= "${space}__code $1(...);\n";
       next;
     }
     chomp $co;