-
Notifications
You must be signed in to change notification settings - Fork 14
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 #4 from micprog/bender
Add Bender.yml file, update hwpe-ctrl, hwpe-str
- Loading branch information
Showing
2 changed files
with
31 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package: | ||
name: hwpe-mac-engine | ||
authors: | ||
- "Francesco Conti <[email protected]>" | ||
|
||
dependencies: | ||
hwpe-stream: { git: "https://github.com/pulp-platform/hwpe-stream.git", version: 1.6.3 } | ||
hwpe-ctrl: { git: "https://github.com/pulp-platform/hwpe-ctrl.git", version: 1.6.1 } | ||
|
||
|
||
sources: | ||
- include_dirs: | ||
- rtl | ||
files: | ||
# Source files grouped in levels. Files in level 0 have no dependencies on files in this | ||
# package. Files in level 1 only depend on files in level 0, files in level 2 on files in | ||
# levels 1 and 0, etc. Files within a level are ordered alphabetically. | ||
# Level 0 | ||
- rtl/mac_package.sv | ||
# Level 1 | ||
- rtl/mac_engine.sv | ||
- rtl/mac_fsm.sv | ||
- rtl/mac_streamer.sv | ||
# Level 2 | ||
- rtl/mac_ctrl.sv | ||
# Level 3 | ||
- rtl/mac_top.sv | ||
# Level 4 | ||
- wrap/mac_top_wrap.sv |
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,5 +1,5 @@ | ||
hwpe-ctrl: | ||
commit: v1.5 | ||
hwpe-stream: | ||
commit: v1.6.1 | ||
hwpe-stream: | ||
commit: v1.6.3 | ||
|