Skip to content

Commit

Permalink
Update argument for bli_rntm_init to match new void signature
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Jan 8, 2025
1 parent cba1b8a commit 69d3db7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blis/cy.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cdef extern from "blis.h" nogil:
blis_err_t bli_init()
blis_err_t bli_finalize()

blis_err_t bli_rntm_init(blis_rntm_t* rntm);
blis_err_t bli_rntm_init()

# BLAS level 3 routines
void bli_dgemm_ex(
Expand Down Expand Up @@ -279,7 +279,7 @@ cdef blis_rntm_t rntm;

def init():
bli_init()
bli_rntm_init(&rntm);
bli_rntm_init()
assert BLIS_NO_TRANSPOSE == <blis_trans_t>NO_TRANSPOSE
assert BLIS_TRANSPOSE == <blis_trans_t>TRANSPOSE
assert BLIS_CONJ_NO_TRANSPOSE == <blis_trans_t>CONJ_NO_TRANSPOSE
Expand Down

0 comments on commit 69d3db7

Please sign in to comment.