Skip to content

Commit

Permalink
Add missing header. Clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
uditagarwal97 authored Jan 7, 2025
1 parent f4c93bb commit 76be7a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sycl/test-e2e/ESIMD/regression/dgetrf_8x8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
//
// Reduced version of dgetrf.cpp - M = 8, N = 8, single batch.
//
#include <inttypes.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
Expand Down Expand Up @@ -219,7 +220,7 @@ static int dgetrfnp_batch_strided_check(int64_t m, int64_t n, double *a_in,
double *w = (double *)malloc(sizeof(double) * MAX(m * n, 1));

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

for (k = 0; k < batch; k++) {
Expand Down

0 comments on commit 76be7a3

Please sign in to comment.