Skip to content

Commit

Permalink
fix: change constant values for BLIS and LAPACK version
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshoku committed Jan 3, 2025
1 parent c823150 commit c798fd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/numo/blis/blisext.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ void Init_blisext()
mBLIS = rb_define_module_under(mNumo, "BLIS");

/* The version of BLIS used as a background library. */
rb_define_const(mBLIS, "BLIS_VERSION", rb_str_new_cstr("0.9.0"));
rb_define_const(mBLIS, "BLIS_VERSION", rb_str_new_cstr("1.0"));

/* The version of LAPACK used as a background library. */
rb_define_const(mBLIS, "LAPACK_VERSION", rb_str_new_cstr("3.10.0"));
rb_define_const(mBLIS, "LAPACK_VERSION", rb_str_new_cstr("3.11.0"));
}

0 comments on commit c798fd4

Please sign in to comment.