forked from pulp-platform/snitch_cluster
-
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.
Fix HWPE MAC output streamer for double word writes (pulp-platform#20)
* hw: Add special switcher for output streamer * hw: Add switcher for double word alignment * hw: Decouple input and output streams in SNAX MAC * hw: Fix bulk changes to allow 64-bit input and output streaming of HWPE MAC * sw: Move from 32 bit to 64 bit data * Fix parameters and comments
- Loading branch information
1 parent
8fa377e
commit 3163dcf
Showing
5 changed files
with
41 additions
and
30 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
uint32_t VEC_LEN = 20; | ||
uint32_t A[] = {99, 67, 39, 26, 62, 14, 17, 18, 54, 16, | ||
uint64_t A[] = {99, 67, 39, 26, 62, 14, 17, 18, 54, 16, | ||
44, 9, 26, 85, 72, 66, 95, 65, 43, 84}; | ||
uint32_t B[] = {86, 10, 14, 11, 38, 41, 94, 82, 97, 25, | ||
uint64_t B[] = {86, 10, 14, 11, 38, 41, 94, 82, 97, 25, | ||
96, 71, 44, 59, 93, 38, 57, 21, 84, 29}; | ||
uint32_t C = 51; | ||
uint32_t OUT; | ||
uint64_t C = 51; | ||
uint64_t OUT; |
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