Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MRG] Vectorize recording during integrate #561

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ net.vis()

- changelog added to CI (#537, #558, @jnsbck)

### Code Health

- Vectorize recording updates during `integrate()`. (#561, @ntolley)

# 0.5.0

### API changes
Expand Down
14 changes: 10 additions & 4 deletions jaxley/integrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,13 @@ def integrate(

if module.recordings.empty:
raise ValueError("No recordings are set. Please set them.")
rec_inds = module.recordings.rec_index.to_numpy()
rec_states = module.recordings.state.to_numpy()
recording_df = module.recordings.reset_index(drop=True)
rec_states, rec_inds, group_inds = list(), list(), list()
for state, df_group in recording_df.groupby("state"):
rec_states.append(state)
rec_inds.append(df_group.rec_index.to_numpy())
group_inds.extend(df_group.index.to_list())
sort_inds = jnp.argsort(jnp.asarray(group_inds))

# Shorten or pad stimulus depending on `t_max`.
if t_max is not None:
Expand Down Expand Up @@ -260,7 +265,7 @@ def integrate(

def _body_fun(state, externals):
state = step_fn(state, all_params, externals, external_inds, delta_t)
recs = jnp.asarray(
recs = jnp.concatenate(
[
state[rec_state][rec_ind]
for rec_state, rec_ind in zip(rec_states, rec_inds)
Expand Down Expand Up @@ -294,7 +299,7 @@ def _body_fun(state, externals):
externals[key] = jnp.concatenate([externals[key], dummy_external])

# Record the initial state.
init_recs = jnp.asarray(
init_recs = jnp.concatenate(
[
all_states[rec_state][rec_ind]
for rec_state, rec_ind in zip(rec_states, rec_inds)
Expand All @@ -311,4 +316,5 @@ def _body_fun(state, externals):
nested_lengths=checkpoint_lengths,
)
recs = jnp.concatenate([init_recording, recordings[:nsteps_to_return]], axis=0).T
recs = recs[sort_inds, :] # Sort recordings back to order that was set by user.
return (recs, all_states) if return_states else recs