File tree Expand file tree Collapse file tree 3 files changed +33
-0
lines changed
notebooks/model_example/hwcomponents_example Expand file tree Collapse file tree 3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 88 get_leak_power ,
99 get_model ,
1010)
11+
12+ __all__ = [
13+ "ComponentModel" ,
14+ "action" ,
15+ "get_models" ,
16+ "scaling" ,
17+ "get_area" ,
18+ "get_energy" ,
19+ "get_latency" ,
20+ "get_leak_power" ,
21+ "get_model" ,
22+ ]
Original file line number Diff line number Diff line change 55 tech_node_latency ,
66 tech_node_leak ,
77)
8+
9+ __all__ = [
10+ # From scalefuncs
11+ "linear" ,
12+ "reciprocal" ,
13+ "pow_base" ,
14+ "quadratic" ,
15+ "nlog_base" ,
16+ "nlog2n" ,
17+ "cacti_depth_energy" ,
18+ "cacti_depth_area" ,
19+ "cacti_depth_leak" ,
20+ "noscale" ,
21+ # From techscaling
22+ "tech_node_area" ,
23+ "tech_node_energy" ,
24+ "tech_node_latency" ,
25+ "tech_node_leak" ,
26+ ]
Original file line number Diff line number Diff line change 11from .TernaryMAC import TernaryMAC
2+
3+ __all__ = ["TernaryMAC" ]
You can’t perform that action at this time.
0 commit comments