Skip to content

Commit

Permalink
Adjust block size for encode3
Browse files Browse the repository at this point in the history
  • Loading branch information
alpers-git committed Oct 23, 2024
1 parent fe26dcc commit a4e1086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sycl/encode3.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ encode3(
, ::sycl::property_list{::sycl::property::queue::enable_profiling()}
#endif
);
const int sycl_block_size = SgSize;
const int sycl_block_size = SgSize * 2; //TODO: ADJUST FOR PVC

// number of zfp blocks to encode
const size_t blocks = ((size[0] + 3) / 4) *
Expand Down

0 comments on commit a4e1086

Please sign in to comment.