najaeda 0.1.21__cp39-cp39-macosx_11_0_arm64.whl → 0.1.22__cp39-cp39-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of najaeda might be problematic. Click here for more details.
- najaeda/docs/source/conf.py +2 -2
- najaeda/libnaja_python.dylib +0 -0
- najaeda/naja.so +0 -0
- najaeda/netlist.py +20 -5
- {najaeda-0.1.21.dist-info → najaeda-0.1.22.dist-info}/METADATA +1 -1
- {najaeda-0.1.21.dist-info → najaeda-0.1.22.dist-info}/RECORD +9 -9
- {najaeda-0.1.21.dist-info → najaeda-0.1.22.dist-info}/WHEEL +0 -0
- {najaeda-0.1.21.dist-info → najaeda-0.1.22.dist-info}/licenses/AUTHORS +0 -0
- {najaeda-0.1.21.dist-info → najaeda-0.1.22.dist-info}/licenses/LICENSE +0 -0
najaeda/docs/source/conf.py
CHANGED
|
@@ -15,7 +15,7 @@ sys.path.insert(0, os.path.abspath('../../../'))
|
|
|
15
15
|
project = 'najaeda'
|
|
16
16
|
copyright = '2024, Naja authors'
|
|
17
17
|
author = 'Naja authors'
|
|
18
|
-
release = '0.1.
|
|
18
|
+
release = '0.1.22'
|
|
19
19
|
|
|
20
20
|
# -- General configuration ---------------------------------------------------
|
|
21
21
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
@@ -27,7 +27,7 @@ extensions = [
|
|
|
27
27
|
'sphinx.ext.todo', # (Optional) For TODOs in the documentation
|
|
28
28
|
]
|
|
29
29
|
|
|
30
|
-
autodoc_mock_imports = ["najaeda.
|
|
30
|
+
autodoc_mock_imports = ["najaeda.naja"]
|
|
31
31
|
templates_path = ['_templates']
|
|
32
32
|
exclude_patterns = []
|
|
33
33
|
|
najaeda/libnaja_python.dylib
CHANGED
|
Binary file
|
najaeda/naja.so
CHANGED
|
Binary file
|
najaeda/netlist.py
CHANGED
|
@@ -11,6 +11,7 @@ import struct
|
|
|
11
11
|
import sys
|
|
12
12
|
import os
|
|
13
13
|
from enum import Enum
|
|
14
|
+
from typing import Union, List
|
|
14
15
|
|
|
15
16
|
from najaeda import naja
|
|
16
17
|
|
|
@@ -455,9 +456,9 @@ class Term:
|
|
|
455
456
|
term_str = (
|
|
456
457
|
f"{path}/{get_snl_term_for_ids(self.pathIDs, self.termIDs).getName()}"
|
|
457
458
|
)
|
|
458
|
-
if self.is_bus:
|
|
459
|
+
if self.is_bus():
|
|
459
460
|
term_str += f"[{self.get_msb()}:{self.get_lsb()}]"
|
|
460
|
-
elif self.is_bus_bit:
|
|
461
|
+
elif self.is_bus_bit():
|
|
461
462
|
term_str += f"[{self.get_lsb()}]"
|
|
462
463
|
return term_str
|
|
463
464
|
|
|
@@ -978,7 +979,7 @@ class Instance:
|
|
|
978
979
|
yield Instance(path_child)
|
|
979
980
|
# path.pop()
|
|
980
981
|
|
|
981
|
-
def
|
|
982
|
+
def count_child_instances(self) -> int:
|
|
982
983
|
"""
|
|
983
984
|
:return: the number of child instances of this instance.
|
|
984
985
|
:rtype: int
|
|
@@ -1467,7 +1468,14 @@ class VerilogConfig:
|
|
|
1467
1468
|
self.keep_assigns = keep_assigns
|
|
1468
1469
|
|
|
1469
1470
|
|
|
1470
|
-
def load_verilog(files:
|
|
1471
|
+
def load_verilog(files: Union[str, List[str]], config: VerilogConfig = None) -> Instance:
|
|
1472
|
+
"""Load verilog files into the top design.
|
|
1473
|
+
:param files: a list of verilog files to load or a single file.
|
|
1474
|
+
:param config: the configuration to use when loading the files.
|
|
1475
|
+
:return: the top Instance.
|
|
1476
|
+
"""
|
|
1477
|
+
if isinstance(files, str):
|
|
1478
|
+
files = [files]
|
|
1471
1479
|
if not files or len(files) == 0:
|
|
1472
1480
|
raise Exception("No verilog files provided")
|
|
1473
1481
|
if config is None:
|
|
@@ -1480,7 +1488,14 @@ def load_verilog(files: list, config: VerilogConfig = None) -> Instance:
|
|
|
1480
1488
|
return get_top()
|
|
1481
1489
|
|
|
1482
1490
|
|
|
1483
|
-
def load_liberty(files:
|
|
1491
|
+
def load_liberty(files: Union[str, List[str]]):
|
|
1492
|
+
"""Load liberty files.
|
|
1493
|
+
:param files: a list of liberty files to load or a single file.
|
|
1494
|
+
"""
|
|
1495
|
+
if isinstance(files, str):
|
|
1496
|
+
files = [files]
|
|
1497
|
+
if not files or len(files) == 0:
|
|
1498
|
+
raise Exception("No liberty files provided")
|
|
1484
1499
|
logging.info(f"Loading liberty files: {', '.join(files)}")
|
|
1485
1500
|
__get_top_db().loadLibertyPrimitives(files)
|
|
1486
1501
|
|
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
najaeda
|
|
1
|
+
najaeda-0.1.22.dist-info/RECORD,,
|
|
2
|
+
najaeda-0.1.22.dist-info/WHEEL,sha256=Bp5NfjQuMM_4-YV1MlnhqEfxPV5ySj3kUtyINz66rJc,112
|
|
3
|
+
najaeda-0.1.22.dist-info/METADATA,sha256=yODu-S8hBOfAa8gE_obfi9DKrlaWUMBz89ZZb9fk10A,2475
|
|
4
|
+
najaeda-0.1.22.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
5
|
+
najaeda-0.1.22.dist-info/licenses/AUTHORS,sha256=7NYEGDAX_1QZvCCHfq8YVXC5ZbwH_pbNI8DcSmm70GU,377
|
|
6
|
+
najaeda/netlist.py,sha256=donwdHm7eKBQNTkjdTTt9lAqKxSbSSYF3CTmN1UafkY,53396
|
|
2
7
|
najaeda/libnaja_nl.dylib,sha256=O1pfUil1jLkWu89X3JGpKyTwuVqmpsnwZDOESYqjqeU,713152
|
|
3
8
|
najaeda/pandas_stats.py,sha256=yOb4ka965U7rN4D6AwvSGmRyeT_O7Ed-5cmT8BFbfeo,1070
|
|
4
9
|
najaeda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
najaeda/naja.so,sha256=
|
|
10
|
+
najaeda/naja.so,sha256=MR_bQ_U1LJRg_rHuKma1ReUGEUewKzUZTbVI5B6FQUE,99440
|
|
6
11
|
najaeda/net_visitor.py,sha256=P_esjibYb-wBDuF-AyF7es9sJYw1Ha8RhTPu-qKe7G4,1940
|
|
7
12
|
najaeda/libnaja_opt.dylib,sha256=91kz37-SLpztC7x1F_VYZlddwzCBoNVaD6NqL7OL2GQ,190816
|
|
8
|
-
najaeda/libnaja_python.dylib,sha256=
|
|
13
|
+
najaeda/libnaja_python.dylib,sha256=T2F6x0X3vz_a_RLdKaQOS6XsHZhiPfBZ9czNWbOkAiM,904240
|
|
9
14
|
najaeda/stats.py,sha256=wackXsf0x24ic9v-UifECHj4t5yveUWssMDZp2B057A,16187
|
|
10
15
|
najaeda/instance_visitor.py,sha256=JMsPSQaWNiDjxS05rxg83a0PIsrOIuTi9G35hkwdibs,1530
|
|
11
16
|
najaeda/libnaja_bne.dylib,sha256=r9-g0qCILL6w_BgXYg62karCWloSPSpdNGEeS2Ey0Jk,134064
|
|
@@ -16,7 +21,7 @@ najaeda/docs/requirements.txt,sha256=1XIBGTIplm2arC9HhDCfLuAjozGdVSXkqmOj8ybuT6U
|
|
|
16
21
|
najaeda/docs/.readthedocs.yaml,sha256=nN_Psro-YdfPcIiueZkJcZepts68g23rqVThhKnmVRw,790
|
|
17
22
|
najaeda/docs/source/index.rst,sha256=80VMfeEGHObnOUXRBxIzISQsG_HNkgT-pUpsDZsCfOY,387
|
|
18
23
|
najaeda/docs/source/instance.rst,sha256=7B2IBB0p32Tb4qvOCE77OlrQaYpFADvmTlq1q8eyVqw,458
|
|
19
|
-
najaeda/docs/source/conf.py,sha256=
|
|
24
|
+
najaeda/docs/source/conf.py,sha256=XqCFo29gZCbaoPe1xEan9ZonYyQW5NZnWHGEWrB7p8Q,2021
|
|
20
25
|
najaeda/docs/source/preprocessor.py,sha256=TK4LsTdNbv2dxkKQaJ7cEyo9PU5v_56vlrFCJYIPKf8,2625
|
|
21
26
|
najaeda/docs/source/term.rst,sha256=QKWT6u1xjEjusvcZYknKQ-M83ibohO5y1EYTQnnXqak,690
|
|
22
27
|
najaeda/docs/source/net.rst,sha256=i6YEir8ZOldSY8-UmPxgVJ4Ot3y-Q6seRkBr2H-KmXc,732
|
|
@@ -33,8 +38,3 @@ najaeda/.dylibs/libtbb.12.15.dylib,sha256=MGGmYnvwo6PQYq7aVv_m2gKHBbOkAdwjPLJtYZ
|
|
|
33
38
|
najaeda/.dylibs/libkj-1.1.0.dylib,sha256=pB7dMks8b8ybJ6xKWqFR_hHjKsmpf7wzbcunZaS7gO4,578320
|
|
34
39
|
najaeda/primitives/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
40
|
najaeda/primitives/xilinx.py,sha256=Ka-jlu-OxixEZ_yR_niXLHtaUL8HxT1Bg9H9Kpnr4ns,26551
|
|
36
|
-
najaeda-0.1.21.dist-info/RECORD,,
|
|
37
|
-
najaeda-0.1.21.dist-info/WHEEL,sha256=Bp5NfjQuMM_4-YV1MlnhqEfxPV5ySj3kUtyINz66rJc,112
|
|
38
|
-
najaeda-0.1.21.dist-info/METADATA,sha256=F9KxuiPDRio9g80RxoIDE7lwBcbAwk85-8GA5c5Mmxo,2475
|
|
39
|
-
najaeda-0.1.21.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
40
|
-
najaeda-0.1.21.dist-info/licenses/AUTHORS,sha256=7NYEGDAX_1QZvCCHfq8YVXC5ZbwH_pbNI8DcSmm70GU,377
|
|
File without changes
|
|
File without changes
|
|
File without changes
|