forked from itlab-vision/dl-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[OpenVINO][RISC-V] Added 2023.3 Release support and RISC-V wheel buil…
…ding
- Loading branch information
1 parent
3db5e57
commit d57eeee
Showing
3 changed files
with
26 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/src/bindings/python/wheel/setup.py b/src/bindings/python/wheel/setup.py | ||
index 4b05691221..53cb888ba4 100644 | ||
--- a/src/bindings/python/wheel/setup.py | ||
+++ b/src/bindings/python/wheel/setup.py | ||
@@ -38,6 +38,8 @@ elif machine == "arm" or machine == "armv7l": | ||
ARCH = "arm" | ||
elif machine == "aarch64" or machine == "arm64" or machine == "ARM64": | ||
ARCH = "arm64" | ||
+elif machine == "riscv64": | ||
+ ARCH = "riscv64" | ||
|
||
# The following variables can be defined in environment or .env file | ||
SCRIPT_DIR = Path(__file__).resolve().parents[0] |