Skip to content

Commit 8bd4ddd

Browse files
committed
Silence -Wsign-compare in src/gpuarray_array_blas.c
1 parent 6e8fbdd commit 8bd4ddd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gpuarray_array_blas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ int GpuArray_rgemmBatch_3d(cb_transpose transA, cb_transpose transB, double alph
370370
int err;
371371
gpudata **A_datas = NULL, **B_datas = NULL, **C_datas = NULL;
372372
size_t *A_offsets = NULL, *B_offsets = NULL, *C_offsets = NULL;
373-
int i;
373+
size_t i;
374374

375375
if (A->typecode != GA_FLOAT && A->typecode != GA_DOUBLE)
376376
return GA_INVALID_ERROR;

0 commit comments

Comments
 (0)