Skip to content

Commit b45fcb1

Browse files
FPGA: Reduce input size for Shannonization (#1484)
* Reduce input size * Also update README
1 parent 3500c3b commit b45fcb1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

DirectProgramming/C++SYCL_FPGA/Tutorials/DesignPatterns/shannonization/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ The following table explains the command-line arguments that can be passed to th
351351

352352
| Argument name | Description | Default
353353
|:--- |:--- |:---
354-
|`--A` | Set the size of array A | 128 for emulation, 131072 for FPGA
355-
|`--B` | Set the size of array B | 256 for emulation, 262144 for FPGA
354+
|`--A` | Set the size of array A | 128 for emulation, 16384 for FPGA
355+
|`--B` | Set the size of array B | 256 for emulation, 32768 for FPGA
356356
|`--help` | Print the help message | N/A
357357

358358
### On Linux

DirectProgramming/C++SYCL_FPGA/Tutorials/DesignPatterns/shannonization/src/shannonization.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ int main(int argc, char** argv) {
191191
unsigned int a_size = 128;
192192
unsigned int b_size = 256;
193193
#else
194-
unsigned int a_size = 131072;
195-
unsigned int b_size = 262144;
194+
unsigned int a_size = 16384;
195+
unsigned int b_size = 32768;
196196
#endif
197197
bool need_help = false;
198198

0 commit comments

Comments
 (0)