Skip to content

Commit

Permalink
Rename function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Tankya2 committed Jan 30, 2024
1 parent f8c2b88 commit d3c9266
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qibotn/backends/gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def execute_circuit(
raise_error(NotImplementedError,
"QiboTN cannot support initial state.")

state, rank = cutn.eval_tn_MPI_2(circuit, self.dtype, 32)
state, rank = cutn.eval_tn_MPI(circuit, self.dtype, 32)
if rank > 0:
state = np.array(0)

Expand Down Expand Up @@ -152,7 +152,7 @@ def execute_circuit(
raise_error(NotImplementedError,
"QiboTN cannot support initial state.")

state, rank = cutn.eval_tn_MPI_2_expectation(
state, rank = cutn.eval_tn_MPI_expectation(
circuit, self.dtype, 32)

if rank > 0:
Expand Down

0 comments on commit d3c9266

Please sign in to comment.