Commit 061dfe00 authored by tsocha's avatar tsocha Committed by adstraw

Fix a problem with call stack parameters order (#717)

parent 0cad670b
......@@ -87,7 +87,7 @@ class Computation:
external = self.runtime.manager.compile(self.function)
call_frame = self.runtime.backend.make_call_frame(external)
call_frame.call(self.tensor_views, [result_view])
call_frame.call([result_view], self.tensor_views)
Computation._read_tensor_view_to_ndarray(result_view, result_arr)
result_arr = result_arr.reshape(result_shape)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment