Skip to content

Commit

Permalink
Merge branch 'nv_plugins' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
HenningSE authored Feb 13, 2025
2 parents ad1789c + f10a94b commit 05c3ad3
Show file tree
Hide file tree
Showing 6 changed files with 1,600 additions and 99 deletions.
2 changes: 1 addition & 1 deletion fuse/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def dynamic_chunking(data, scale, n_min):


def full_array_to_numpy(array, dtype):
len_output = len(awkward_to_flat_numpy(array["x"]))
len_output = len(awkward_to_flat_numpy(array[array.fields[0]]))

numpy_data = np.zeros(len_output, dtype=dtype)

Expand Down
3 changes: 3 additions & 0 deletions fuse/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@

from . import processing
from .processing import *

from . import neutron_veto
from .neutron_veto import *
Loading

0 comments on commit 05c3ad3

Please sign in to comment.