Skip to content

Commit

Permalink
add _expmv method without backend
Browse files Browse the repository at this point in the history
  • Loading branch information
schillic committed Apr 22, 2023
1 parent cd1a291 commit d69a0c9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Utils/matrix_exponential.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ function get_exponential_backend()
return exponential_backend
end

# use default backend
function _expmv(t, A, b; kwargs...)
backend = get_exponential_backend()
return _expmv(backend, t, A, b; kwargs...)
end

# ====================
# ExponentialUtilities
# ====================
Expand Down

0 comments on commit d69a0c9

Please sign in to comment.