Skip to content

Commit c518a29

Browse files
committed
it should be failing but passes on x86-64
1 parent d993bc9 commit c518a29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

quaddtype/numpy_quaddtype/src/umath/matmul.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ init_matmul_ops(PyObject *numpy)
290290
PyArray_DTypeMeta *dtypes[3] = {&QuadPrecDType, &QuadPrecDType, &QuadPrecDType};
291291

292292
PyType_Slot slots[] = {{NPY_METH_resolve_descriptors, (void *)&quad_matmul_resolve_descriptors},
293-
{NPY_METH_strided_loop, (void *)&naive_matmul_strided_loop},
293+
{NPY_METH_strided_loop, (void *)&quad_matmul_strided_loop},
294294
{NPY_METH_unaligned_strided_loop, (void *)&naive_matmul_strided_loop},
295295
{0, NULL}};
296296

0 commit comments

Comments
 (0)