Skip to content

Commit

Permalink
example/gmres: Switch scalar back to double
Browse files Browse the repository at this point in the history
  • Loading branch information
e10harvey committed Feb 3, 2022
1 parent 9ae5c4f commit 2e27125
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/gmres/test_cmplx_A.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#include "gmres.hpp"

int main(int /*argc*/, char** /*argv[]*/) {
typedef Kokkos::complex<Kokkos::Experimental::bhalf_t> ST;
typedef Kokkos::complex<double> ST;
typedef int OT;
typedef Kokkos::DefaultExecutionSpace EXSP;

Expand Down
2 changes: 1 addition & 1 deletion example/gmres/test_real_A.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#include "gmres.hpp"

int main(int /*argc*/, char** /*argv[]*/) {
typedef Kokkos::Experimental::bhalf_t ST;
typedef double ST;
typedef int OT;
typedef Kokkos::DefaultExecutionSpace EXSP;

Expand Down

0 comments on commit 2e27125

Please sign in to comment.