Skip to content

Commit 2031628

Browse files
author
Anoop Kapoor
committed
Fixed identation issue raise by Ashish
1 parent b38c986 commit 2031628

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ggml/include/ggml.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ extern "C" {
662662

663663
#if defined(GGML_PERF) || defined(GGML_PERF_RELEASE) || defined(GGML_PERF_DETAIL)
664664
int64_t perf_runs;
665-
int64_t tsi_kernel_runs;
665+
int64_t tsi_kernel_runs;
666666
int64_t perf_time_us;
667667
enum ggml_compute_backend_type ggml_compute_backend;
668668
char padding[12];

ggml/src/ggml-tsavorite/ggml-tsavorite.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,7 @@ static enum ggml_status ggml_tsavorite_graph_compute(ggml_backend_t backend,
12251225
val[0] = scale;
12261226
ctx->kernels[kernel_type].pipeline->_mlir_fptr_3_input[kernel_sub_type](srcP0, srcP1, nodeP, glob_buf);
12271227
++device->stats.op_run_count[kernel_type].num_of_kernel_call;
1228-
++node->tsi_kernel_runs;
1228+
++node->tsi_kernel_runs;
12291229
}
12301230
}
12311231
}
@@ -1259,7 +1259,7 @@ static enum ggml_status ggml_tsavorite_graph_compute(ggml_backend_t backend,
12591259
// kernel call
12601260
ctx->kernels[kernel_type].pipeline->_mlir_fptr_2_input[kernel_sub_type](srcP0, srcP1, nodeP);
12611261
++device->stats.op_run_count[kernel_type].num_of_kernel_call;
1262-
++node->tsi_kernel_runs;
1262+
++node->tsi_kernel_runs;
12631263
}
12641264
}
12651265
}
@@ -1374,7 +1374,7 @@ static enum ggml_status ggml_tsavorite_graph_compute(ggml_backend_t backend,
13741374
ctx->kernels[kernel_type].pipeline->_mlir_fptr_1_input[kernel_sub_type](srcP0, nodeP);
13751375
}
13761376
++device->stats.op_run_count[kernel_type].num_of_kernel_call;
1377-
++node->tsi_kernel_runs;
1377+
++node->tsi_kernel_runs;
13781378

13791379
if (ggml_tsavorite_log_type_val == GGML_TSAVORITE_LOG_DEBUG) {
13801380
log_data.data_type = GGML_TSAVORITE_TENSOR_NODE;

0 commit comments

Comments
 (0)