siliconcompiler 0.28.5__py3-none-any.whl → 0.28.7__py3-none-any.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.
- siliconcompiler/_metadata.py +1 -1
- siliconcompiler/apps/utils/summarize.py +47 -0
- siliconcompiler/core.py +17 -11
- siliconcompiler/report/dashboard/__init__.py +10 -3
- siliconcompiler/tools/openroad/metrics.py +0 -1
- siliconcompiler/tools/openroad/scripts/sc_apr.tcl +19 -21
- siliconcompiler/toolscripts/_tools.json +1 -1
- {siliconcompiler-0.28.5.dist-info → siliconcompiler-0.28.7.dist-info}/METADATA +12 -10
- {siliconcompiler-0.28.5.dist-info → siliconcompiler-0.28.7.dist-info}/RECORD +13 -12
- {siliconcompiler-0.28.5.dist-info → siliconcompiler-0.28.7.dist-info}/WHEEL +1 -1
- {siliconcompiler-0.28.5.dist-info → siliconcompiler-0.28.7.dist-info}/LICENSE +0 -0
- {siliconcompiler-0.28.5.dist-info → siliconcompiler-0.28.7.dist-info}/entry_points.txt +0 -0
- {siliconcompiler-0.28.5.dist-info → siliconcompiler-0.28.7.dist-info}/top_level.txt +0 -0
siliconcompiler/_metadata.py
CHANGED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Copyright 2024 Silicon Compiler Authors. All Rights Reserved.
|
|
2
|
+
|
|
3
|
+
# Standard Modules
|
|
4
|
+
import sys
|
|
5
|
+
|
|
6
|
+
import siliconcompiler
|
|
7
|
+
from siliconcompiler.apps._common import UNSET_DESIGN
|
|
8
|
+
from siliconcompiler import SiliconCompilerError
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
###########################
|
|
12
|
+
def main():
|
|
13
|
+
progname = "summarize"
|
|
14
|
+
description = """
|
|
15
|
+
------------------------------------------------------------
|
|
16
|
+
Utility script to print job summary from a manifest
|
|
17
|
+
------------------------------------------------------------
|
|
18
|
+
"""
|
|
19
|
+
# Create a base chip class.
|
|
20
|
+
chip = siliconcompiler.Chip(UNSET_DESIGN)
|
|
21
|
+
|
|
22
|
+
# Read command-line inputs and generate Chip objects to run the flow on.
|
|
23
|
+
try:
|
|
24
|
+
chip.create_cmdline(progname,
|
|
25
|
+
description=description,
|
|
26
|
+
switchlist=['-cfg',
|
|
27
|
+
'-loglevel'])
|
|
28
|
+
except SiliconCompilerError:
|
|
29
|
+
return 1
|
|
30
|
+
except Exception as e:
|
|
31
|
+
chip.logger.error(e)
|
|
32
|
+
return 1
|
|
33
|
+
|
|
34
|
+
design = chip.get('design')
|
|
35
|
+
if design == UNSET_DESIGN:
|
|
36
|
+
chip.logger.error('Design not loaded')
|
|
37
|
+
return 1
|
|
38
|
+
|
|
39
|
+
# Print Job Summary
|
|
40
|
+
chip.summary(generate_image=False, generate_html=False)
|
|
41
|
+
|
|
42
|
+
return 0
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
#########################
|
|
46
|
+
if __name__ == "__main__":
|
|
47
|
+
sys.exit(main())
|
siliconcompiler/core.py
CHANGED
|
@@ -399,7 +399,7 @@ class Chip:
|
|
|
399
399
|
self.set(*key, packages, field='package', step=step, index=index)
|
|
400
400
|
|
|
401
401
|
# Read in target if set
|
|
402
|
-
if "target" in extra_params:
|
|
402
|
+
if extra_params is not None and "target" in extra_params:
|
|
403
403
|
if extra_params["target"]:
|
|
404
404
|
# running target command
|
|
405
405
|
# Search order "{name}", and "siliconcompiler.targets.{name}"
|
|
@@ -416,7 +416,7 @@ class Chip:
|
|
|
416
416
|
self.use(modules[0])
|
|
417
417
|
extra_params["target"] = modules[0].__name__
|
|
418
418
|
|
|
419
|
-
if "use" in extra_params:
|
|
419
|
+
if extra_params is not None and "use" in extra_params:
|
|
420
420
|
if extra_params["use"]:
|
|
421
421
|
for use in extra_params["use"]:
|
|
422
422
|
mod = self._load_module(use)
|
|
@@ -437,19 +437,25 @@ class Chip:
|
|
|
437
437
|
if "-target" in additional_args:
|
|
438
438
|
raise ValueError('-target cannot be used as an additional argument')
|
|
439
439
|
|
|
440
|
-
|
|
441
|
-
"
|
|
442
|
-
|
|
443
|
-
|
|
440
|
+
if switchlist is None or '-target' in switchlist:
|
|
441
|
+
additional_args["-target"] = {
|
|
442
|
+
"help": "target to load",
|
|
443
|
+
"metavar": "<target>"
|
|
444
|
+
}
|
|
445
|
+
if switchlist:
|
|
446
|
+
switchlist.remove('-target')
|
|
444
447
|
|
|
445
448
|
if "-use" in additional_args:
|
|
446
449
|
raise ValueError('-use cannot be used as an additional argument')
|
|
447
450
|
|
|
448
|
-
|
|
449
|
-
"
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
451
|
+
if switchlist is None or '-use' in switchlist:
|
|
452
|
+
additional_args["-use"] = {
|
|
453
|
+
"action": "append",
|
|
454
|
+
"help": "modules to load",
|
|
455
|
+
"metavar": "<module>"
|
|
456
|
+
}
|
|
457
|
+
if switchlist:
|
|
458
|
+
switchlist.remove('-use')
|
|
453
459
|
|
|
454
460
|
try:
|
|
455
461
|
return self.schema.create_cmdline(
|
|
@@ -3,9 +3,6 @@ import time
|
|
|
3
3
|
import tempfile
|
|
4
4
|
import json
|
|
5
5
|
|
|
6
|
-
from streamlit.web import bootstrap
|
|
7
|
-
from streamlit import config as _config
|
|
8
|
-
|
|
9
6
|
import multiprocessing
|
|
10
7
|
import subprocess
|
|
11
8
|
import atexit
|
|
@@ -16,6 +13,13 @@ import socketserver
|
|
|
16
13
|
|
|
17
14
|
from siliconcompiler.report.dashboard import utils
|
|
18
15
|
|
|
16
|
+
try:
|
|
17
|
+
from streamlit.web import bootstrap
|
|
18
|
+
from streamlit import config as _config
|
|
19
|
+
except ModuleNotFoundError:
|
|
20
|
+
bootstrap = None
|
|
21
|
+
_config = None
|
|
22
|
+
|
|
19
23
|
|
|
20
24
|
class Dashboard():
|
|
21
25
|
__port = 8501
|
|
@@ -26,6 +30,9 @@ class Dashboard():
|
|
|
26
30
|
pass
|
|
27
31
|
|
|
28
32
|
def __init__(self, chip, port=None, graph_chips=None):
|
|
33
|
+
if not bootstrap:
|
|
34
|
+
raise NotImplementedError('streamlit is not available')
|
|
35
|
+
|
|
29
36
|
if not port:
|
|
30
37
|
port = Dashboard.get_next_port()
|
|
31
38
|
if not port:
|
|
@@ -198,30 +198,28 @@ if { [file exists "inputs/$sc_design.odb"] } {
|
|
|
198
198
|
}
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
-
if {
|
|
201
|
+
if { [file exists "inputs/${sc_design}.def"] } {
|
|
202
|
+
# Read DEF
|
|
203
|
+
# get from previous step
|
|
204
|
+
puts "Reading DEF: inputs/${sc_design}.def"
|
|
205
|
+
read_def "inputs/${sc_design}.def"
|
|
206
|
+
} elseif { [sc_cfg_exists input layout def] } {
|
|
207
|
+
# Read DEF
|
|
208
|
+
set sc_def [lindex [sc_cfg_get input layout def] 0]
|
|
209
|
+
puts "Reading DEF: ${sc_def}"
|
|
210
|
+
read_def $sc_def
|
|
211
|
+
} elseif { [file exists "inputs/${sc_design}.vg"] } {
|
|
202
212
|
# Read Verilog
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
read_verilog "inputs/${sc_design}.vg"
|
|
206
|
-
} else {
|
|
207
|
-
foreach netlist [sc_cfg_get input netlist verilog] {
|
|
208
|
-
puts "Reading netlist verilog: ${netlist}"
|
|
209
|
-
read_verilog $netlist
|
|
210
|
-
}
|
|
211
|
-
}
|
|
213
|
+
puts "Reading netlist verilog: inputs/${sc_design}.vg"
|
|
214
|
+
read_verilog "inputs/${sc_design}.vg"
|
|
212
215
|
link_design $sc_design
|
|
213
216
|
} else {
|
|
214
|
-
# Read
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
read_def "inputs/${sc_design}.def"
|
|
219
|
-
} elseif { [sc_cfg_exists input layout def] } {
|
|
220
|
-
# Floorplan initialize handled separately in sc_floorplan.tcl
|
|
221
|
-
set sc_def [lindex [sc_cfg_get input layout def] 0]
|
|
222
|
-
puts "Reading DEF: ${sc_def}"
|
|
223
|
-
read_def $sc_def
|
|
217
|
+
# Read Verilog
|
|
218
|
+
foreach netlist [sc_cfg_get input netlist verilog] {
|
|
219
|
+
puts "Reading netlist verilog: ${netlist}"
|
|
220
|
+
read_verilog $netlist
|
|
224
221
|
}
|
|
222
|
+
link_design $sc_design
|
|
225
223
|
}
|
|
226
224
|
}
|
|
227
225
|
|
|
@@ -405,7 +403,7 @@ utl::info FLW 1 "Using $sc_rc_signal for signal parasitics estimation"
|
|
|
405
403
|
|
|
406
404
|
set_thread_count $sc_threads
|
|
407
405
|
|
|
408
|
-
if { $sc_task != "floorplan" } {
|
|
406
|
+
if { $sc_task != "floorplan" && $sc_task != "metrics" } {
|
|
409
407
|
## Setup global routing
|
|
410
408
|
|
|
411
409
|
# Adjust routing track density
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openroad": {
|
|
3
3
|
"git-url": "https://github.com/The-OpenROAD-Project/OpenROAD.git",
|
|
4
|
-
"git-commit": "
|
|
4
|
+
"git-commit": "dcba5786c8e714e3b7682a98d73de40e875699b1",
|
|
5
5
|
"docker-cmds": [
|
|
6
6
|
"# Remove OR-Tools files",
|
|
7
7
|
"RUN rm -f $SC_PREFIX/Makefile $SC_PREFIX/README.md",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: siliconcompiler
|
|
3
|
-
Version: 0.28.
|
|
3
|
+
Version: 0.28.7
|
|
4
4
|
Summary: A compiler framework that automates translation from source code to silicon.
|
|
5
5
|
Author-email: Andreas Olofsson <andreas.d.olofsson@gmail.com>
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -34,22 +34,23 @@ Requires-Dist: graphviz ==0.20.3
|
|
|
34
34
|
Requires-Dist: distro ==1.9.0
|
|
35
35
|
Requires-Dist: packaging <24,>=21.3
|
|
36
36
|
Requires-Dist: psutil >=5.8.0
|
|
37
|
-
Requires-Dist: Pillow ==10.4.0
|
|
38
37
|
Requires-Dist: GitPython ==3.1.43
|
|
39
38
|
Requires-Dist: lambdapdk >=0.1.38
|
|
40
|
-
Requires-Dist: PyGithub ==2.
|
|
39
|
+
Requires-Dist: PyGithub ==2.5.0
|
|
41
40
|
Requires-Dist: urllib3 >=1.26.0
|
|
42
41
|
Requires-Dist: fasteners ==0.19
|
|
43
42
|
Requires-Dist: fastjsonschema ==2.20.0
|
|
44
43
|
Requires-Dist: docker ==7.1.0
|
|
45
44
|
Requires-Dist: sc-surelog ==1.84.1
|
|
46
45
|
Requires-Dist: orjson ==3.10.11
|
|
47
|
-
Requires-Dist: streamlit ==1.
|
|
48
|
-
Requires-Dist: streamlit-agraph ==0.0.45
|
|
49
|
-
Requires-Dist: streamlit-antd-components ==0.3.2
|
|
50
|
-
Requires-Dist: streamlit-javascript ==0.1.5
|
|
51
|
-
Requires-Dist: streamlit-autorefresh ==1.0.1
|
|
46
|
+
Requires-Dist: streamlit ==1.40.0 ; python_full_version != "3.9.7"
|
|
47
|
+
Requires-Dist: streamlit-agraph ==0.0.45 ; python_full_version != "3.9.7"
|
|
48
|
+
Requires-Dist: streamlit-antd-components ==0.3.2 ; python_full_version != "3.9.7"
|
|
49
|
+
Requires-Dist: streamlit-javascript ==0.1.5 ; python_full_version != "3.9.7"
|
|
50
|
+
Requires-Dist: streamlit-autorefresh ==1.0.1 ; python_full_version != "3.9.7"
|
|
52
51
|
Requires-Dist: importlib-metadata ; python_version < "3.10"
|
|
52
|
+
Requires-Dist: Pillow ==10.4.0 ; python_version <= "3.8"
|
|
53
|
+
Requires-Dist: Pillow ==11.0.0 ; python_version >= "3.9"
|
|
53
54
|
Provides-Extra: docs
|
|
54
55
|
Requires-Dist: Sphinx ==8.1.3 ; extra == 'docs'
|
|
55
56
|
Requires-Dist: pip-licenses ==5.0.0 ; extra == 'docs'
|
|
@@ -57,7 +58,7 @@ Requires-Dist: pydata-sphinx-theme ==0.16.0 ; extra == 'docs'
|
|
|
57
58
|
Requires-Dist: sc-leflib >=0.2.0 ; extra == 'docs'
|
|
58
59
|
Provides-Extra: examples
|
|
59
60
|
Requires-Dist: migen ==0.9.2 ; extra == 'examples'
|
|
60
|
-
Requires-Dist: lambdalib ==0.3.
|
|
61
|
+
Requires-Dist: lambdalib ==0.3.1 ; extra == 'examples'
|
|
61
62
|
Provides-Extra: profile
|
|
62
63
|
Requires-Dist: gprof2dot ==2024.6.6 ; extra == 'profile'
|
|
63
64
|
Provides-Extra: test
|
|
@@ -65,12 +66,13 @@ Requires-Dist: pytest ==8.3.3 ; extra == 'test'
|
|
|
65
66
|
Requires-Dist: pytest-xdist ==3.6.1 ; extra == 'test'
|
|
66
67
|
Requires-Dist: pytest-timeout ==2.3.1 ; extra == 'test'
|
|
67
68
|
Requires-Dist: pytest-asyncio ==0.24.0 ; extra == 'test'
|
|
68
|
-
Requires-Dist: pytest-cov ==5.0.0 ; extra == 'test'
|
|
69
69
|
Requires-Dist: responses ==0.25.3 ; extra == 'test'
|
|
70
70
|
Requires-Dist: PyVirtualDisplay ==3.0 ; extra == 'test'
|
|
71
71
|
Requires-Dist: flake8 ==7.1.1 ; extra == 'test'
|
|
72
72
|
Requires-Dist: tclint ==0.4.2 ; extra == 'test'
|
|
73
73
|
Requires-Dist: codespell ==2.3.0 ; extra == 'test'
|
|
74
|
+
Requires-Dist: pytest-cov ==5.0.0 ; (python_version <= "3.8") and extra == 'test'
|
|
75
|
+
Requires-Dist: pytest-cov ==6.0.0 ; (python_version >= "3.9") and extra == 'test'
|
|
74
76
|
|
|
75
77
|

|
|
76
78
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
siliconcompiler/__init__.py,sha256=Ke_Bcryj9N6MoUq_5z_IDW3qMrUzR-3-kJVsvUenYzY,511
|
|
2
2
|
siliconcompiler/__main__.py,sha256=JwWkcvaNngqgMWprEQ1cFy2Wdq9GMvk46UGTHyh_qvM,170
|
|
3
3
|
siliconcompiler/_common.py,sha256=c6r0SbI2xTpNOZayFsyCDo0riJGNJSPN-0zW8R7rDBI,1488
|
|
4
|
-
siliconcompiler/_metadata.py,sha256=
|
|
5
|
-
siliconcompiler/core.py,sha256=
|
|
4
|
+
siliconcompiler/_metadata.py,sha256=uHqTgPki2c0kr5ODJxHpeZjAGsSPLAYzpKQui1WbfCk,1264
|
|
5
|
+
siliconcompiler/core.py,sha256=_T1eEY7lUsrbaEBUaG1WSAzY2JFxyz5tXEKxvoCGZaI,135718
|
|
6
6
|
siliconcompiler/flowgraph.py,sha256=WLcbBWFj5DdYRRIxNy_Djm2v4yN9WELQM_ypNPB5QVM,21963
|
|
7
7
|
siliconcompiler/issue.py,sha256=9ZpdEBh8QB56-bZ1YXRnjqgg9hwnFty2u1o5oI66W7M,11125
|
|
8
8
|
siliconcompiler/package.py,sha256=nGFzYI63dwO6ULEyEGHu_Pd-8QYMWu8BtpzgwEmppag,14111
|
|
@@ -18,6 +18,7 @@ siliconcompiler/apps/sc_remote.py,sha256=M7wH7lULkeDSEiVkvTY2xmuAK8lJ-3eVM6fC3bq
|
|
|
18
18
|
siliconcompiler/apps/sc_server.py,sha256=d3SCfKtNneIBiAk7Udc5SqXvSIoFSK40iHWcKuY7unk,894
|
|
19
19
|
siliconcompiler/apps/sc_show.py,sha256=KZGm6nd2On3a15u-OPQnLxNetiHndJKqzWMZG2_Q_1g,4652
|
|
20
20
|
siliconcompiler/apps/smake.py,sha256=jj69IuMLf4jblpVGeLT3GAvC-zDLHwPq16YPKtHosdA,7124
|
|
21
|
+
siliconcompiler/apps/utils/summarize.py,sha256=mcViWpuS8UI2JqOF-QD99YAl0tjiy6_TbVl_coRCmNI,1291
|
|
21
22
|
siliconcompiler/checklists/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
23
|
siliconcompiler/checklists/oh_tapeout.py,sha256=xBXAHOVNslFUlOfVTLLoPEJazczP8MTsa5EGo5GYQk0,1441
|
|
23
24
|
siliconcompiler/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -83,7 +84,7 @@ siliconcompiler/report/report.py,sha256=Bw09BzVAm1gDBPf2jR3FrEF0434B6bSIa-E3IWby
|
|
|
83
84
|
siliconcompiler/report/summary_image.py,sha256=tKuoLiG6Whvnc8LHeSzU4FookpBkYYCMWUGb-ux2i8k,3570
|
|
84
85
|
siliconcompiler/report/summary_table.py,sha256=Y5ByOCJQtNOXIz5n9VU_CBHOTdSE0g8ClmfflWkQcXU,3386
|
|
85
86
|
siliconcompiler/report/utils.py,sha256=70klZsAKwhW55kOxBBdV9zzOU-NorMk6y6riMyKXo7c,6423
|
|
86
|
-
siliconcompiler/report/dashboard/__init__.py,sha256=
|
|
87
|
+
siliconcompiler/report/dashboard/__init__.py,sha256=bvSfStUvkMa1zW1R5WtzzzKKAMm9FCNiPbIIFXOotJ0,5554
|
|
87
88
|
siliconcompiler/report/dashboard/state.py,sha256=qBAmLpKb0xXqf2vRbBBgYs8P71v3MGIL6z0WHoAED-Y,5924
|
|
88
89
|
siliconcompiler/report/dashboard/viewer.py,sha256=scF4MkbOdqM1pRCzGWnXeMrk4r2M4Y2cDyEIrAWCFiw,1095
|
|
89
90
|
siliconcompiler/report/dashboard/components/__init__.py,sha256=BkVt0JakAj9kC5WlewdvFESwygjDmhyj85xiV8oc00I,18097
|
|
@@ -215,7 +216,7 @@ siliconcompiler/tools/openroad/cts.py,sha256=CZz_eJxCyuMpA7bvQaDm6dYgOkUM9phNKD1
|
|
|
215
216
|
siliconcompiler/tools/openroad/dfm.py,sha256=RjdOqq7oPVSx5HzYUTSlBh4ZGnVfJqJHR0cs4WdG1pQ,2244
|
|
216
217
|
siliconcompiler/tools/openroad/export.py,sha256=svZZlcUIq9FTDydpoDZdlPyoMVYIkLBUTIBD2dm8TOk,5273
|
|
217
218
|
siliconcompiler/tools/openroad/floorplan.py,sha256=y7V2WOhHW0MhMJkjx4hQuTsiIKCMpcJiQEu4RaMlq_k,2804
|
|
218
|
-
siliconcompiler/tools/openroad/metrics.py,sha256=
|
|
219
|
+
siliconcompiler/tools/openroad/metrics.py,sha256=SyGF-foyfJz2VZRxEdA_HCKI9wW3s8jzdBkph1WMG3E,1048
|
|
219
220
|
siliconcompiler/tools/openroad/openroad.py,sha256=Xbs2FcTy1ooMhi6NIksidlGi4a8EAnmtUk6Gm8Ez98c,46911
|
|
220
221
|
siliconcompiler/tools/openroad/physyn.py,sha256=ZgEPRTGyXe930PsXNHx1p7ITsBa6x7_EyZfW8vM0-O8,682
|
|
221
222
|
siliconcompiler/tools/openroad/place.py,sha256=0eRg3n0x3zawg8jp7akDpc1KbUw4LKqeGJ2MMliXbnU,1018
|
|
@@ -226,7 +227,7 @@ siliconcompiler/tools/openroad/route.py,sha256=4kLuBXeCyztS3sccORtjxSS8et0OFtaxG
|
|
|
226
227
|
siliconcompiler/tools/openroad/screenshot.py,sha256=VWh74bLxgeW_8YOhUokDYDIN8rsQgb1G3KMLOPbF-EQ,1970
|
|
227
228
|
siliconcompiler/tools/openroad/show.py,sha256=YtdKChcf2cdp2QoKvoHBjeKUWLP-7A8kWe3TfsZhuVw,3731
|
|
228
229
|
siliconcompiler/tools/openroad/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
229
|
-
siliconcompiler/tools/openroad/scripts/sc_apr.tcl,sha256=
|
|
230
|
+
siliconcompiler/tools/openroad/scripts/sc_apr.tcl,sha256=2HFzF54m6I1rGSYPb-n9eyGAkKFeiSyR0R0pN0hVXDQ,20320
|
|
230
231
|
siliconcompiler/tools/openroad/scripts/sc_cts.tcl,sha256=IcHanlIAwd0183CaRTNG4lzP-DuFy5GYu4gGsUftBBo,1987
|
|
231
232
|
siliconcompiler/tools/openroad/scripts/sc_dfm.tcl,sha256=vhIUebTDyDtg7mnwDzUgMmdKZd5NmgG68wQBj1P34Pg,587
|
|
232
233
|
siliconcompiler/tools/openroad/scripts/sc_export.tcl,sha256=-r3WUFON7gMgXxcJUL_uGBp_-wi46h1hAMKlRWtOzWg,2830
|
|
@@ -311,7 +312,7 @@ siliconcompiler/tools/yosys/techmaps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
311
312
|
siliconcompiler/tools/yosys/techmaps/lcu_kogge_stone.v,sha256=M4T-ygiKmlsprl5eGGLaV5w6HVqlEepn0wlUDmOkapg,773
|
|
312
313
|
siliconcompiler/tools/yosys/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
314
|
siliconcompiler/tools/yosys/templates/abc.const,sha256=TAq9ThdLMYCJGrtToEU0gWcLuEtjE4Gk8huBbTm1v-I,116
|
|
314
|
-
siliconcompiler/toolscripts/_tools.json,sha256=
|
|
315
|
+
siliconcompiler/toolscripts/_tools.json,sha256=wTknmgxxAimBLm0crN_uDsJ40sbt-rUQFEMAbc37qiA,3959
|
|
315
316
|
siliconcompiler/toolscripts/_tools.py,sha256=P30KY_xbbjl8eHGsPAxDcAzWvJJpiL07ZfGZZDQbdR8,7174
|
|
316
317
|
siliconcompiler/toolscripts/rhel8/install-chisel.sh,sha256=lPORZN7vlBX6sJSv01JOIiDE9-_7GcCZGA7EP5ri3MQ,525
|
|
317
318
|
siliconcompiler/toolscripts/rhel8/install-ghdl.sh,sha256=xCLeEUuJVI_6PVEvnTwBsTWoEHiQg0TY3x-tJXfg6Zk,459
|
|
@@ -412,9 +413,9 @@ siliconcompiler/toolscripts/ubuntu24/install-yosys.sh,sha256=zpyt0MVI7tY8kGY2GII
|
|
|
412
413
|
siliconcompiler/utils/__init__.py,sha256=fdTd5f6W-45YiVY4lU2lyVWE4Y97-uRUfEXY8SpAFgU,13887
|
|
413
414
|
siliconcompiler/utils/asic.py,sha256=cMLs7dneSmh5BlHS0-bZ1tLUpvghTw__gNaUCMpyBds,4986
|
|
414
415
|
siliconcompiler/utils/showtools.py,sha256=QPlS42bkJM3EPKDcoxA0oATSFJM2TFpz-ZVCBV_7Ts4,1306
|
|
415
|
-
siliconcompiler-0.28.
|
|
416
|
-
siliconcompiler-0.28.
|
|
417
|
-
siliconcompiler-0.28.
|
|
418
|
-
siliconcompiler-0.28.
|
|
419
|
-
siliconcompiler-0.28.
|
|
420
|
-
siliconcompiler-0.28.
|
|
416
|
+
siliconcompiler-0.28.7.dist-info/LICENSE,sha256=lbLR6sRo_CYJOf7SVgHi-U6CZdD8esESEZE5TZazOQE,10766
|
|
417
|
+
siliconcompiler-0.28.7.dist-info/METADATA,sha256=1w3SlTr_7Lwc6Mu0j0DkPXC-7zkI-aA9b6-CR48UdRo,10823
|
|
418
|
+
siliconcompiler-0.28.7.dist-info/WHEEL,sha256=a7TGlA-5DaHMRrarXjVbQagU3Man_dCnGIWMJr5kRWo,91
|
|
419
|
+
siliconcompiler-0.28.7.dist-info/entry_points.txt,sha256=TZVS-8akO-8Z1Z1oMjgWryzk_F9dAW74d2ArJV843pg,501
|
|
420
|
+
siliconcompiler-0.28.7.dist-info/top_level.txt,sha256=H8TOYhnEUZAV1RJTa8JRtjLIebwHzkQUhA2wkNU2O6M,16
|
|
421
|
+
siliconcompiler-0.28.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|