trilinos / Trilinos

Primary repository for the Trilinos Project
https://trilinos.org/
Other
1.22k stars 568 forks source link

Compilation error for missing operator >= for Kokkos_Views when called by Tpetra_MultiVector #219

Closed mperego closed 8 years ago

mperego commented 8 years ago

It's probably related with new Kokkos Views. See my configuration script and error that I get.

Thanks!

Mauro

do-trilinos-experimental.txt error.txt

hcedwar commented 8 years ago

the erroroneous statement if (src.getDualView ().modified_device >= src.getDualView ().modified_host) { should be if (src.getDualView ().modified_device() >= src.getDualView ().modified_host() ) {

mperego commented 8 years ago

Thanks! I'm testing this now, then I'll commit the change.

mperego commented 8 years ago

Bug fixed. Thanks again. Mauro