Skip to content

Commit fe56227

Browse files
committed
Update fpga_lsu.hpp GetValue calls
Used the locally scope GetValue as per the previous commit.
1 parent b6a2af8 commit fe56227

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sycl/include/CL/sycl/INTEL/fpga_lsu.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,21 +73,21 @@ template <class... _mem_access_params> class lsu final {
7373

7474
private:
7575
static constexpr int32_t _burst_coalesce_val =
76-
GetValue<burst_coalesce_impl, _mem_access_params...>::value;
76+
_GetValue<burst_coalesce_impl, _mem_access_params...>::value;
7777
static constexpr uint8_t _burst_coalesce =
7878
_burst_coalesce_val == 1 ? BURST_COALESCE : 0;
7979

8080
static constexpr int32_t _cache_val =
81-
GetValue<cache, _mem_access_params...>::value;
81+
_GetValue<cache, _mem_access_params...>::value;
8282
static constexpr uint8_t _cache = (_cache_val > 0) ? CACHE : 0;
8383

8484
static constexpr int32_t _statically_coalesce_val =
85-
GetValue<statically_coalesce_impl, _mem_access_params...>::value;
85+
_GetValue<statically_coalesce_impl, _mem_access_params...>::value;
8686
static constexpr uint8_t _dont_statically_coalesce =
8787
_statically_coalesce_val == 0 ? STATICALLY_COALESCE : 0;
8888

8989
static constexpr int32_t _prefetch_val =
90-
GetValue<prefetch_impl, _mem_access_params...>::value;
90+
_GetValue<prefetch_impl, _mem_access_params...>::value;
9191
static constexpr uint8_t _prefetch = _prefetch_val ? PREFETCH : 0;
9292

9393
static_assert(_cache_val >= 0, "cache size parameter must be non-negative");

0 commit comments

Comments
 (0)