Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minimal modif to run with kokkos 4.2.00 #58

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/kokkos
Submodule kokkos updated 1343 files
6 changes: 4 additions & 2 deletions include/libpykokkos.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@

#pragma once

#include "common.hpp"

#include <pybind11/pybind11.h>

#include <iostream>

#include "common.hpp"

namespace py = pybind11;

void generate_tools(py::module& kokkos);
Expand Down
3 changes: 2 additions & 1 deletion include/pools.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@

#include <Kokkos_Core.hpp>
#include <Kokkos_Random.hpp>
#include <iostream>

namespace Common {
template <typename PoolT, typename Sp>
Expand All @@ -71,4 +72,4 @@ void generate_pool(py::module &_mod, const std::string &_name,
},
"Initialize the random pool");
}
} // namespace Common
} // namespace Common
7 changes: 4 additions & 3 deletions include/views.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,17 @@

#pragma once

#include <Kokkos_Core.hpp>
#include <Kokkos_DynRankView.hpp>
#include <iostream>

#include "common.hpp"
#include "concepts.hpp"
#include "deep_copy.hpp"
#include "defines.hpp"
#include "fwd.hpp"
#include "traits.hpp"

#include <Kokkos_Core.hpp>
#include <Kokkos_DynRankView.hpp>

//----------------------------------------------------------------------------//

template <typename Tp, size_t... Idx,
Expand Down
11 changes: 6 additions & 5 deletions src/enumeration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,16 @@
//@HEADER
*/

#include "common.hpp"
#include "defines.hpp"
#include "fwd.hpp"
#include "traits.hpp"

#include <pybind11/pybind11.h>
#include <pybind11/pytypes.h>

#include <cassert>
#include <iostream>

#include "common.hpp"
#include "defines.hpp"
#include "fwd.hpp"
#include "traits.hpp"

//----------------------------------------------------------------------------//

Expand Down
Loading