-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add functions to resort Signed-off-by: xiaowuhu <[email protected]> * change code and add test case Signed-off-by: xiaowuhu <[email protected]> * Update float16.py Signed-off-by: xiaowuhu <[email protected]> * Delete float16_old.py Signed-off-by: xiaowuhu <[email protected]> * Update float16.py Signed-off-by: xiaowuhu <[email protected]> * fix flake 8 Signed-off-by: xiaowuhu <[email protected]> * Update perfstats.py Signed-off-by: xiaowuhu <[email protected]> * Update test_float16.py Signed-off-by: xiaowuhu <[email protected]> * Update __init__.py Signed-off-by: xiaowuhu <[email protected]> * Create pyproject.toml * add more info * update Signed-off-by: xiaowuhu <[email protected]> * Delete setup.py * Update float16.py Signed-off-by: xiaowuhu <[email protected]> * disable python Signed-off-by: xiaowuhu <[email protected]> * Revert "Delete setup.py" This reverts commit 2da0727. --------- Signed-off-by: xiaowuhu <[email protected]>
- Loading branch information
Showing
10 changed files
with
115 additions
and
12 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
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 +1,2 @@ | ||
include LICENSE | ||
include requirements.txt |
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "onnxconverter-common" | ||
dynamic = ["version"] | ||
description="ONNX Converter and Optimization Tools" | ||
authors = [{ name = "Microsoft Corporation", email = "[email protected]" }] | ||
urls = { "Repository" = "https://github.com/microsoft/onnxconverter-common" } | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = { file = "LICENSE" } | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"License :: OSI Approved :: MIT License", | ||
] | ||
dependencies = ["numpy", "onnx", "packaging", "protobuf==3.20.2"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "onnxconverter_common.__version__"} |
Binary file not shown.
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