Skip to content

Commit

Permalink
use compute backend for filter product
Browse files Browse the repository at this point in the history
  • Loading branch information
cremebrule committed Dec 12, 2024
1 parent 64fab4f commit 62d08b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omnigibson/utils/processing_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def reset(self):
@property
def state_size(self):
# This is the size of the internal buffer plus the current index and fully filled single values
return th.prod(self.past_samples.shape) + 2
return cb.prod(self.past_samples.shape) + 2

def _dump_state(self):
# Run super init first
Expand Down

0 comments on commit 62d08b9

Please sign in to comment.