-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added shapes to graph edges * Updated to latest changes in NIR * Renamed shape -> type * Added norse and sinabs to test requirements * Bumped version number to 0.2.1 --------- Co-authored-by: Sadique Sheik <[email protected]>
- Loading branch information
1 parent
6b3ba5e
commit 7b1976f
Showing
10 changed files
with
171 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
from .from_nir import load # noqa F401 | ||
from .to_nir import extract_nir_graph # noqa F401 | ||
|
||
__version__ = version = "0.2.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ requires = ["setuptools"] | |
|
||
[project] | ||
name = "nirtorch" | ||
version = "0.2.0" | ||
description = "Neuromorphic Intermediate Representation" | ||
authors = [ | ||
{ name = "Steven Abreu", email = "[email protected]" }, | ||
|
@@ -29,3 +28,7 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
dependencies = [ "torch", "nir" ] | ||
dynamic = ["version"] # Version number read from __init__.py | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "nirtorch.__version__"} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.