# HG changeset patch # User anatofuz # Date 1574603733 -32400 # Node ID d9c3bccaa13cfc4542458e72a15e794e2535a026 # Parent 1233236c244dca5f55febb09a07607fbfd67f938 add semiron.. diff -r 1233236c244d -r d9c3bccaa13c src/parallel_execution/plautogen/impl/CUDAWorker.h --- 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; diff -r 1233236c244d -r d9c3bccaa13c src/parallel_execution/plautogen/impl/RedBlackTree.h --- 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; diff -r 1233236c244d -r d9c3bccaa13c src/parallel_execution/plautogen/impl/TaskManagerImpl.h --- 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 impl TaskManager { - __code next(...) + __code next(...); int numWorker; int sendCPUWorkerIndex; int sendGPUWorkerIndex; diff -r 1233236c244d -r d9c3bccaa13c src/parallel_execution/plautogen/interface/Allocate.h --- 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 { - __code next(...) + __code next(...); long size; } Allocate; diff -r 1233236c244d -r d9c3bccaa13c src/parallel_execution/plautogen/interface/Main.h --- 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 { - __code code(...) - __code next(...) + __code code(...); + __code next(...); struct Queue* args; } Main; diff -r 1233236c244d -r d9c3bccaa13c src/parallel_execution/plautogen/interface/RotateTree.h --- 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 { - __code next(...) + __code next(...); struct RedBlackTree* traverse; struct Tree* tree; } RotateTree; diff -r 1233236c244d -r d9c3bccaa13c src/parallel_execution/tmp_tool/parse_cerate_each_context.pl --- 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;