Skip to content

Commit

Permalink
WIP DVS - DVS node not given
Browse files Browse the repository at this point in the history
fixed argument type hint.
  • Loading branch information
Willian-Girao committed Oct 28, 2024
1 parent 3711bc0 commit f301599
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sinabs/backend/dynapcnn/chips/dynapcnn.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import copy
from typing import Dict, List
from typing import Dict, List, Optional
from warnings import warn

import samna
Expand Down Expand Up @@ -287,7 +287,7 @@ def build_config(
layers: Dict[int, DynapcnnLayer],
destination_map: Dict[int, List[int]],
layer2core_map: Dict[int, int],
dvs_node_info: Dict,
dvs_node_info: Optional[Dict],
) -> DynapcnnConfiguration:
"""Uses `DynapcnnLayer` objects to configure their equivalent chip cores
Expand Down

0 comments on commit f301599

Please sign in to comment.