-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from hikettei/develop
[WIP] Various new features: Enhanced JIT Compiler targeted to multiple devices, ONNX Support, et al.
- Loading branch information
Showing
117 changed files
with
3,420 additions
and
3,203 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
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 @@ | ||
|
||
;; [WIP] Feature roadmap on frontends. | ||
;; | ||
;; frontend/onnx (From ONNX To cl-waffe2 translator) | ||
;; frontend/qnn (Quantized Neural Network Op Supports (basically relies on JITCompiler)) | ||
;; frontend/backends | ||
;; frontend/backends/cuda (Additional backends which requires more dependency, should be placed at frontend) | ||
;; | ||
|
||
(asdf:defsystem :cl-waffe2.frontends | ||
:description "A set of frontend toolkits for cl-waffe2" | ||
:author "hikettei <[email protected]>" | ||
:Licence "MIT") | ||
|
||
(asdf:defsystem :cl-waffe2.frontends/onnx | ||
:description "ONNX Graph Translator" | ||
:author "hikettei <[email protected]>" | ||
:licence "MIT" | ||
:pathname "frontends/onnx" | ||
:depends-on ("cl-onnx" "alexandria") | ||
:components ((:file "package") | ||
(:file "utils") | ||
(:file "opset") | ||
(:file "from-model-proto"))) | ||
|
||
;; Other frontend system follows... | ||
;;(asdf:defsystem :cl-waffe2.frontends/qnn | ||
;; :description "[WIP] Quantization Tools" | ||
;; :author "hikettei <[email protected]>" | ||
;; :licence "MIT") |
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.