Skip to content

Commit

Permalink
add missing kwarg to HiLAMParallel
Browse files Browse the repository at this point in the history
  • Loading branch information
leifdenby committed Sep 27, 2024
1 parent d4d438f commit 1889771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neural_lam/models/hi_lam_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class HiLAMParallel(BaseHiGraphModel):
of Hi-LAM.
"""

def __init__(self, args):
super().__init__(args)
def __init__(self, args, datastore):
super().__init__(args, datastore=datastore)

# Processor GNNs
# Create the complete edge_index combining all edges for processing
Expand Down

0 comments on commit 1889771

Please sign in to comment.