Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
projekter committed Nov 6, 2024
1 parent 201fd19 commit 1b81a3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sparse_dot_mkl/_gram_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def _gram_matrix_sparse(


# Dict keyed by ('double_precision_bool', 'complex_bool')
_mkl_skryd_funcs = {
_mkl_syrkd_funcs = {
(False, False): MKL._mkl_sparse_s_syrkd,
(True, False): MKL._mkl_sparse_d_syrkd,
(False, True): MKL._mkl_sparse_c_syrkd,
Expand Down Expand Up @@ -129,7 +129,7 @@ def _gram_matrix_sparse_to_dense(
_order_mkl_handle(sp_ref_a)

out_dtype = _output_dtypes[(double_prec, complex_type)]
func = _mkl_skryd_funcs[(double_prec, complex_type)]
func = _mkl_syrkd_funcs[(double_prec, complex_type)]

out_dim = matrix_a.shape[0 if aat else 1]

Expand Down

0 comments on commit 1b81a3c

Please sign in to comment.