|
12 | 12 | # ================================================================================================== |
13 | 13 | SCRIPT_DIR = os.path.realpath(os.path.dirname(__file__)) |
14 | 14 | DEBUG = False |
15 | | -PRIORITY = 0.7 |
| 15 | +PRIORITY = 0.3 |
16 | 16 | PERMITTED_TECH_NODES = [7e-9, 10e-9, 14e-9, 22e-9, 32e-9, 45e-9, 65e-9, 90e-9, 130e-9] |
17 | 17 | SAMPLE_CELLS = [ |
18 | 18 | f.split(".")[0] |
@@ -587,7 +587,6 @@ class NORGate(_NeurosimPlugInComponent): |
587 | 587 | The time period of the system clock in seconds. |
588 | 588 | """ |
589 | 589 |
|
590 | | - |
591 | 590 | component_name = ["NORGate", "NeuroSimNORGate"] |
592 | 591 | _get_stats_func = neurointerface.nor_gate_stats |
593 | 592 | _params = ["tech_node", "global_cycle_seconds"] |
@@ -758,7 +757,7 @@ class Mux(_NeurosimPlugInComponent): |
758 | 757 | The number of inputs to the mux. |
759 | 758 | """ |
760 | 759 |
|
761 | | - component_name = "mux" |
| 760 | + component_name = ["Mux", "NeuroSimMux"] |
762 | 761 | _get_stats_func = neurointerface.mux_stats |
763 | 762 | _params = ["tech_node", "global_cycle_seconds", "n_bits", "n_mux_inputs"] |
764 | 763 |
|
@@ -806,7 +805,7 @@ class Adder(_NeurosimPlugInComponent): |
806 | 805 | The number of bits of the adder's inputs. |
807 | 806 | """ |
808 | 807 |
|
809 | | - component_name = "adder" |
| 808 | + component_name = ["Adder", "NeuroSimAdder", "IntAdder"] |
810 | 809 | _get_stats_func = neurointerface.adder_stats |
811 | 810 | _params = ["tech_node", "global_cycle_seconds", "n_bits"] |
812 | 811 |
|
@@ -866,7 +865,7 @@ class AdderTree(_NeurosimPlugInComponent): |
866 | 865 | n_adder_tree_inputs : int |
867 | 866 | The number of values added by the adder tree. |
868 | 867 | """ |
869 | | - component_name = "adder_tree" |
| 868 | + component_name = ["AdderTree", "NeuroSimAdderTree", "IntAdderTree"] |
870 | 869 | _get_stats_func = neurointerface.adder_tree_stats |
871 | 870 | _params = ["tech_node", "global_cycle_seconds", "n_bits", "n_adder_tree_inputs"] |
872 | 871 |
|
@@ -936,7 +935,7 @@ class MaxPool(_NeurosimPlugInComponent): |
936 | 935 | The window size of max pooling. |
937 | 936 | """ |
938 | 937 |
|
939 | | - component_name = "max_pool" |
| 938 | + component_name = ["MaxPool", "NeuroSimMaxPool"] |
940 | 939 | _get_stats_func = neurointerface.max_pool_stats |
941 | 940 | _params = ["tech_node", "global_cycle_seconds", "n_bits", "pool_window"] |
942 | 941 |
|
@@ -980,7 +979,7 @@ class ShiftAdd(_NeurosimPlugInComponent): |
980 | 979 | The number of bits of the shift register. |
981 | 980 | """ |
982 | 981 |
|
983 | | - component_name = "shift_add" |
| 982 | + component_name = ["ShiftAdd", "NeuroSimShiftAdd"] |
984 | 983 | _get_stats_func = neurointerface.shift_add_stats |
985 | 984 | _params = ["tech_node", "global_cycle_seconds", "n_bits", "shift_register_n_bits"] |
986 | 985 |
|
|
0 commit comments