Skip to content

[SYCL] Restore the correct initialization for _statically_coalesce_val #4206

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sycl/include/sycl/ext/intel/fpga_lsu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ template <class... _mem_access_params> class lsu final {
static constexpr uint8_t _cache = (_cache_val > 0) ? CACHE : 0;

static constexpr int32_t _statically_coalesce_val =
_GetValue<statically_coalesce_impl<0>, _mem_access_params...>::value;
_GetValue<statically_coalesce_impl<1>, _mem_access_params...>::value;
static constexpr uint8_t _dont_statically_coalesce =
_statically_coalesce_val == 0 ? STATICALLY_COALESCE : 0;

Expand Down