Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

[SYCL][ESIMD] Update ESIMD/regression/dgetrf.cpp after renaming replicate APIs #893

Merged
merged 1 commit into from
Mar 10, 2022
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/ESIMD/regression/dgetrf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ESIMD_PRIVATE ESIMD_REGISTER(192) simd<double, 3 * 32 * 4> GRF;
#define V(x, w, i) (x).template select<w, 1>(i)
#define V1(x, i) V(x, 1, i)
#define V8(x, i) V(x, 8, i)
#define BCAST8(x, i) (x).template replicate<8, 1>(i)
#define BCAST8(x, i) (x).template replicate_w<8, 1>(i)

template <int M, int N, int K> ESIMD_INLINE void dgetrfnp_panel(int64_t *info) {
auto a = V(GRF, M * N, 0);
Expand Down