Skip to content

Commit bf83968

Browse files
FPGA: Reduce test size for simple_host_streaming simulator target (#1415)
1 parent 9025f96 commit bf83968

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ int main(int argc, char* argv[]) {
5858
size_t chunk_count = 1 << 8; // 256
5959
size_t iterations = 2;
6060
#elif defined(FPGA_SIMULATOR)
61-
size_t chunks = 1 << 5; // 64
62-
size_t chunk_count = 1 << 9; // 1024
61+
size_t chunks = 1 << 3; // 8
62+
size_t chunk_count = 1 << 7; // 128
6363
size_t iterations = 2;
6464
#else
6565
size_t chunks = 1 << 9; // 512

0 commit comments

Comments
 (0)