Skip to content

Commit 75bbc9e

Browse files
committed
fix: prints
1 parent a24ad63 commit 75bbc9e

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

jaxadi/_stages.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,7 @@ def stage_generator(func: Function) -> str:
115115
workers[o_idx[0]] = OP_JAX_VALUE_DICT[op].format(workers[i_idx[0]])
116116
else:
117117
raise Exception("Unknown CasADi operation: " + str(op))
118-
print(sum(len(s) for s in workers))
119118

120-
print("finished stages")
121119
return stages
122120

123121

jaxadi/_translate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ def translate(func: Function, add_jit=False, add_import=False, num_threads=1) ->
77

88
# get the shapes of input and output
99
out_shapes = [func.size_out(i) for i in range(n_out)]
10-
print(out_shapes)
1110
stages = stage_generator(func)
1211
stages = squeeze(stages, num_threads=num_threads)
1312
# get information about casadi function

0 commit comments

Comments
 (0)