Update Kokkos library to v2.7.00
This commit is contained in:
@ -59,7 +59,11 @@ namespace Example {
|
||||
|
||||
template< typename ValueType , class Space >
|
||||
struct CrsMatrix {
|
||||
typedef Kokkos::StaticCrsGraph< unsigned , Space , void , unsigned > StaticCrsGraphType ;
|
||||
#ifdef KOKKOS_ENABLE_DEPRECATED_CODE
|
||||
typedef Kokkos::StaticCrsGraph< unsigned , Space , void , unsigned , void > StaticCrsGraphType ;
|
||||
#else
|
||||
typedef Kokkos::StaticCrsGraph< unsigned , Space , void , void , unsigned > StaticCrsGraphType ;
|
||||
#endif
|
||||
typedef View< ValueType * , Space > coeff_type ;
|
||||
|
||||
StaticCrsGraphType graph ;
|
||||
|
||||
Reference in New Issue
Block a user