Skip to content

Commit

Permalink
Fix backend typedef inside cuspare_ilu0
Browse files Browse the repository at this point in the history
Fixes #264
  • Loading branch information
ddemidov committed Sep 3, 2023
1 parent 57a8140 commit 5d143b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amgcl/relaxation/cusparse_ilu0.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ template <class Backend> struct ilu0;
template <typename real>
struct ilu0< backend::cuda<real> > {
typedef real value_type;
typedef backend::cuda<double> Backend;
typedef backend::cuda<real> Backend;

struct params {
/// Damping factor.
Expand Down

0 comments on commit 5d143b1

Please sign in to comment.