Skip to content

Commit d9c4f0b

Browse files
committed
exllamav3_ext: and -> &&
1 parent d33aba1 commit d9c4f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exllamav3/exllamav3_ext/libtorch/linear.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
void BC_LinearFP16::run_gr(const at::Tensor& x, at::Tensor& y, Graph* graph)
1212
{
13-
if (x.dtype() == y.dtype() and !graph)
13+
if (x.dtype() == y.dtype() && !graph)
1414
at::matmul_out(weight, x, y);
1515
else
1616
hgemm_gr(x, weight, y, graph);

0 commit comments

Comments
 (0)