Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gadfort committed Oct 14, 2023
1 parent e87a05e commit 968ba06
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ authors = [
]
description = "Design gallery for SiliconCompiler"
readme = "README.md"
requires-python = ">=3.6"
requires-python = ">=3.8"
license = {file = "LICENSE"}
dependencies = [
"siliconcompiler>=0.15.0",
"siliconcompiler>=0.16.0",
"GitPython>=3.1.0",
"Jinja2>=2.11.3"
]
Expand Down
8 changes: 7 additions & 1 deletion scgallery/designs/caliptra/sha512.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@

from siliconcompiler import Chip
from siliconcompiler.targets import freepdk45_demo
from scgallery.designs.caliptra._common import add_sha512, add_pcrvault, add_keyvault, add_libs, add_caliptra_top_defines
from scgallery.designs.caliptra._common import (
add_sha512,
add_pcrvault,
add_keyvault,
add_libs,
add_caliptra_top_defines
)


def setup(target=freepdk45_demo):
Expand Down
2 changes: 1 addition & 1 deletion scgallery/designs/tiny_rocket/tiny_rocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def setup(target=freepdk45_demo):
chip.set('option', 'define', 'SYNTHESIS')

chip.add('option', 'ydir', os.path.join(mod_root, 'lambdalib', chip.get('option', 'pdk')))
chip.input(os.path.join(extra_root, f'lambda.v'))
chip.input(os.path.join(extra_root, 'lambda.v'))

if mainlib == 'nangate45':
chip.use(fakeram45)
Expand Down

0 comments on commit 968ba06

Please sign in to comment.