File tree 2 files changed +4
-4
lines changed
DirectProgramming/C++SYCL_FPGA/Tutorials/DesignPatterns/shannonization
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -351,8 +351,8 @@ The following table explains the command-line arguments that can be passed to th
351
351
352
352
| Argument name | Description | Default
353
353
|:--- |:--- |:---
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
356
356
|` --help ` | Print the help message | N/A
357
357
358
358
### On Linux
Original file line number Diff line number Diff line change @@ -191,8 +191,8 @@ int main(int argc, char** argv) {
191
191
unsigned int a_size = 128 ;
192
192
unsigned int b_size = 256 ;
193
193
#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 ;
196
196
#endif
197
197
bool need_help = false ;
198
198
You can’t perform that action at this time.
0 commit comments