Added newline at the end of the file; fixed the arguments for eval_qft function in main file.

This commit is contained in:
Nitin Shivaraman
2023-02-14 21:42:05 +08:00
parent 46d7c30caf
commit bc13eed8f4
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ def parser():
def main(args: argparse.Namespace):
print("Testing for %d nqubits" % (args.nqubits))
qasm_quimb.eval_QI_qft(args.nqubits)
qasm_quimb.eval_QI_qft(args.nqubits, args.qasm_circ, args.init_state)
if __name__ == "__main__":

View File

@@ -7,4 +7,4 @@ qibo = dict(
quimb = dict(
backend = 'numpy',
swaps = True
)
)