Skip to content

Commit 254cef9

Browse files
committed
fix typo
1 parent 375e70d commit 254cef9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml-sycl/binbcast.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ struct bin_bcast_sycl {
9494
const int64_t ne12, const int64_t ne13, const int64_t ne0, const int64_t ne1, const int64_t ne2,
9595
const int64_t ne3, const size_t nb00, const size_t nb01, const size_t nb02, const size_t nb03,
9696
const size_t nb10, const size_t nb11, const size_t nb12, const size_t nb13, const size_t nb0,
97-
const size_t nb1, const size_t nb2, const size_t nb3, const bool src0_is_contiguos,
97+
const size_t nb1, const size_t nb2, const size_t nb3, const bool src0_is_contiguous,
9898
const bool src1_is_contiguous, const bool dst_is_contiguous, queue_ptr stream) {
9999
int nr0 = ne10 / ne0;
100100
int nr1 = ne11/ne1;
@@ -123,7 +123,7 @@ struct bin_bcast_sycl {
123123
cnb[3] *= cne[3];
124124
};
125125

126-
if (src0_is_contiguos && src1_is_contiguous && dst_is_contiguous) {
126+
if (src0_is_contiguous && src1_is_contiguous && dst_is_contiguous) {
127127
for (int i = 0; i < 4; i++) {
128128
if (nr[i] != 1) {
129129
break;

0 commit comments

Comments
 (0)