Skip to content

Commit

Permalink
fix wrong function signature for dger
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cortes committed Dec 28, 2022
1 parent 6a466d1 commit ca238f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ Description: Collective matrix factorization (a.k.a. multi-view or multi-way fac
License: MIT + file LICENSE
Suggests: Matrix, MatrixExtra, RhpcBLASctl, recosystem (>= 0.5), recommenderlab (>= 0.2-7), MASS, knitr, rmarkdown, kableExtra
VignetteBuilder: knitr
RoxygenNote: 7.2.1
RoxygenNote: 7.2.2
NeedsCompilation: yes
2 changes: 1 addition & 1 deletion cmfrec/cython_cblas.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ctypedef double (*dnrm2_)(const int*, const double*, const int*) nogil
ctypedef void (*dgemm_)(const char*, const char*, const int*, const int*, const int*, const double*, const double*, const int*, const double*, const int*, const double*, double*, const int*) nogil
ctypedef void (*dgemv_)(const char*, const int*, const int*, const double*, const double*, const int*, const double*, const int*, const double*, double*, const int*) nogil
ctypedef void (*dsymv_)(const char*, const int*, const double*, const double*, const int*, const double*, const int*, const double*, double*, const int*) nogil
ctypedef double (*dger_)(const int*, const int*, const double*, const double*, const int*, const double*, const int*, double*, const int*) nogil
ctypedef void (*dger_)(const int*, const int*, const double*, const double*, const int*, const double*, const int*, double*, const int*) nogil

ctypedef void (*dposv__)(const char*, const int*, const int*, double*, const int*, double*, const int*, int*) nogil
ctypedef void (*dlacpy__)(const char*, const int*, const int*, const double*, const int*, double*, const int*) nogil
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def test_supports_clang_reassociate(self):
setup(
name = "cmfrec",
packages = ["cmfrec"],
version = '3.6.0',
version = '3.5.0-1',
description = 'Collective matrix factorization',
author = 'David Cortes',
author_email = '[email protected]',
Expand Down

0 comments on commit ca238f8

Please sign in to comment.