Skip to content

Commit cb02e91

Browse files
committed
fix: no tqdm
1 parent 75bbc9e commit cb02e91

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

jaxadi/_stages.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from ._ops import OP_JAX_VALUE_DICT
33
from casadi import OP_CONST, OP_INPUT, OP_OUTPUT, OP_SQ, Function
44
import re
5-
from tqdm import tqdm
65
from multiprocessing import Pool, cpu_count
76

87

@@ -72,7 +71,7 @@ def stage_generator(func: Function) -> str:
7271
const_instr = [func.instruction_constant(i) for i in range(n_instr)]
7372

7473
stages = []
75-
for k in tqdm(range(n_instr)):
74+
for k in range(n_instr):
7675
op = operations[k]
7776
o_idx = output_idx[k]
7877
i_idx = input_idx[k]

0 commit comments

Comments
 (0)