Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoming0625 committed Oct 25, 2024
1 parent 12977af commit 38f2226
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions brainpy/_src/math/object_transform/controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,8 +894,8 @@ def for_loop(
dyn_vals, out_vals = transform(operands)
for key in stack.keys():
stack[key]._value = dyn_vals[key]
if progress_bar:
bar.close()
# if progress_bar:
# bar.close()
del dyn_vals, stack
return out_vals

Expand All @@ -915,7 +915,7 @@ def fun2scan(carry, x):
dyn_vars[k]._value = dyn_vars_data[k]
carry, results = body_fun(carry, x)
if progress_bar:
jax.pure_callback(lambda *arg: bar.update(), ())
jax.debug.callback(lambda *arg: bar.update(), ())
carry = jax.tree.map(_as_jax_array_, carry, is_leaf=lambda a: isinstance(a, Array))
return (dyn_vars.dict_data(), carry), results

Expand Down
24 changes: 12 additions & 12 deletions examples/dynamics_simulation/hh_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ def __init__(self, size):
self.KNa.add_elem()


# hh = HH(1)
# I, length = bp.inputs.section_input(values=[0, 5, 0],
# durations=[100, 500, 100],
# return_length=True)
# runner = bp.DSRunner(
# hh,
# monitors=['V', 'INa.p', 'INa.q', 'IK.p'],
# inputs=[hh.input, I, 'iter'],
# )
# runner.run(length)
#
# bp.visualize.line_plot(runner.mon.ts, runner.mon.V, show=True)
hh = HH(1)
I, length = bp.inputs.section_input(values=[0, 5, 0],
durations=[100, 500, 100],
return_length=True)
runner = bp.DSRunner(
hh,
monitors=['V', 'INa.p', 'INa.q', 'IK.p'],
inputs=[hh.input, I, 'iter'],
)
runner.run(length)

bp.visualize.line_plot(runner.mon.ts, runner.mon.V, show=True)

0 comments on commit 38f2226

Please sign in to comment.