Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[SYCL][ESIMD][E2E] Fix printf's format specifier in dgetrf_8x8.cpp #16541

Merged
merged 3 commits into from
Jan 7, 2025
Merged
Changes from 1 commit
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/test-e2e/ESIMD/regression/dgetrf_8x8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ static int dgetrfnp_batch_strided_check(int64_t m, int64_t n, double *a_in,
double res = 0.0, nrm = 0.0, ulp = *(double *)prec_b;
double *w = (double *)malloc(sizeof(double) * MAX(m * n, 1));

sprintf(label, "m=%ld, n=%ld, lda=%ld, batch=%ld", m, n, lda, batch);
sprintf(label, "m=%lld, n=%lld, lda=%lld, batch=%lld", m, n, lda, batch);

for (k = 0; k < batch; k++) {
/* info == 0 */
Expand Down
Loading