Skip to content

Commit c3272d4

Browse files
authored
Update conv.cpp (#145)
Peform -> Perform
1 parent 50f5d14 commit c3272d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlx/backend/common/conv.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ void explicit_gemm_conv_1D_cpu(
357357
gemm_out.set_data(allocator::malloc_or_wait(gemm_out.nbytes()));
358358
}
359359

360-
// Peform gemm
360+
// Perform gemm
361361
cblas_sgemm(
362362
CblasRowMajor,
363363
CblasNoTrans, // no trans A
@@ -459,7 +459,7 @@ void explicit_gemm_conv_2D_cpu(
459459
gemm_out.set_data(allocator::malloc_or_wait(gemm_out.nbytes()));
460460
}
461461

462-
// Peform gemm
462+
// Perform gemm
463463
cblas_sgemm(
464464
CblasRowMajor,
465465
CblasNoTrans, // no trans A

0 commit comments

Comments
 (0)