Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Routhleck committed Aug 3, 2024
1 parent da498b5 commit 979d21a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion brainpy/_src/integrators/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def _step_fun_integrator(self, static_args, dyn_args, t, i):

# progress bar
if self.progress_bar:
jax.pure_callback(lambda *args: self._pbar.update(), ())
jax.debug.callback(lambda *args: self._pbar.update(), ())

# return of function monitors
shared = dict(t=t + self.dt, dt=self.dt, i=i)
Expand Down
2 changes: 1 addition & 1 deletion brainpy/_src/math/object_transform/controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ def fun2scan(carry, x):
dyn_vars[k]._value = carry[k]
results = body_fun(*x, **unroll_kwargs)
if progress_bar:
jax.pure_callback(lambda *arg: bar.update(), ())
jax.debug.callback(lambda *args: bar.update(), ())
return dyn_vars.dict_data(), results

if remat:
Expand Down
2 changes: 1 addition & 1 deletion brainpy/_src/train/offline.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def _fun_train(self,
targets = target_data[node.name]
node.offline_fit(targets, fit_record)
if self.progress_bar:
jax.pure_callback(lambda *args: self._pbar.update(), ())
jax.debug.callback(lambda *args: self._pbar.update(), ())

def _step_func_monitor(self):
res = dict()
Expand Down
2 changes: 1 addition & 1 deletion brainpy/_src/train/online.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def _step_func_fit(self, i, xs: Sequence, ys: Dict, shared_args=None):

# finally
if self.progress_bar:
jax.pure_callback(lambda *arg: self._pbar.update(), ())
jax.debug.callback(lambda *args: self._pbar.update(), ())
return out, monitors

def _check_interface(self):
Expand Down

0 comments on commit 979d21a

Please sign in to comment.