Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion quaddtype/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ npymath_lib = c.find_library('npymath', dirs: npymath_path)
dependencies = [py_dep, qblas_dep, sleef_dep, sleefquad_dep, npymath_lib]

# Add OpenMP dependency (optional, for threading)
openmp_dep = dependency('openmp', required: false)
openmp_dep = dependency('openmp', required: false, static: false)
if openmp_dep.found()
dependencies += openmp_dep
endif
Expand Down
3 changes: 0 additions & 3 deletions quaddtype/numpy_quaddtype/src/umath/matmul.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,6 @@ init_matmul_ops(PyObject *numpy)
PyArray_DTypeMeta *dtypes[3] = {&QuadPrecDType, &QuadPrecDType, &QuadPrecDType};

#ifndef DISABLE_QUADBLAS
// set threading to max
int num_threads = _quadblas_get_num_threads();
_quadblas_set_num_threads(num_threads);

PyType_Slot slots[] = {
{NPY_METH_resolve_descriptors, (void *)&quad_matmul_resolve_descriptors},
Expand Down
Loading