Skip to content

Commit

Permalink
Update sigma_g_filter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremykubica committed Dec 13, 2024
1 parent 034f307 commit 189ebb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kbmod/filters/sigma_g_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def compute_clipped_sigma_g_matrix(self, lh):
A N x T matrix of Booleans indicating if each point is valid (True)
or has been filtered (False).
"""
inds_valid = self.sigma_g_jax_fn(jnp.asarray(lh))
inds_valid = self.sigma_g_jax_fn(jnp.asarray(lh)).block_until_ready()
return inds_valid


Expand Down

0 comments on commit 189ebb4

Please sign in to comment.