Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tjbanks committed Sep 11, 2024
1 parent 159c543 commit 6b174b2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion bmtk/simulator/bionet/modules/iclamp.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ def __init__(self, input_type, **mod_args):
def initialize(self, sim):
# Get select node gids, but only for those nodes that are on the current rank (if running on multiple cores)
select_gids = list(sim.net.get_node_set(self._node_set).gids())
gids_on_rank = list(set(select_gids) & set(sim.local_gids))
local_gids = sim.net.get_local_cells()
gids_on_rank = list(set(select_gids) & set(local_gids))

Expand Down

0 comments on commit 6b174b2

Please sign in to comment.