Updated python tests

This commit is contained in:
Alejandro Saucedo 2021-02-09 21:48:23 +00:00
parent d8041d696d
commit a828bb9f79
3 changed files with 12 additions and 12 deletions

View file

@ -66,10 +66,10 @@ def test_logistic_regression():
params = [tensor_x_i, tensor_x_j, tensor_y, tensor_w_in, tensor_w_out_i,
tensor_w_out_j, tensor_b_in, tensor_b_out, tensor_l_out, tensor_m]
mgr.rebuild_tensors(params)
mgr.rebuild(params)
# Create a managed sequence
sq = mgr.create_sequence()
sq = mgr.sequence()
# Clear previous operations and begin recording for new operations
sq.begin()