kokkos / kokkos-tutorials

Tutorials for the Kokkos C++ Performance Portability Programming Ecosystem
Other
271 stars 95 forks source link

fix header ostream -> iostream #81

Closed pkestene closed 7 months ago

pkestene commented 7 months ago

fir compile error


dual_view_exercise.cpp(81): error: namespace "std" has no member "cout"
    std::cout << "initializing kokkos....." <<std::endl;
``
dalg24 commented 7 months ago

std::cout is indeed defined in <iostream>. Thank you for fixing.