Char Aznable
Char Aznable
This code gives the `Constructing View and initializing data with uninitialized execution space` error. Note that all relevant views are on the host and the code is built for the...
Hi, I am using scikit-build to build and install a project with pure c++, c++ pybind11 and pure python code. When I run `pip install`, I find that the third-party...
This code: ```c++ #include #include using ExecutionSpace = Kokkos::DefaultExecutionSpace; struct Key { int k_[2]; }; struct Value { int v_[2]; }; int main(int argc, char* argv[]) { Kokkos::initialize(argc,argv); { using...
Hi, I got this very simple Taocpp code: ```c++ #include #include int main(int argc, char* argv[]) { auto t2 = tao::tuple< int, double, int >( 1, 2, 3 ); tao::get<...
This code creates an empty UnorderedMap and repetitively deep_copy another emtpy UnorderedMap to it and it results in increasing memory consumption. ```c++ #include #include using ExecutionSpace = Kokkos::DefaultExecutionSpace; using HostExecutionSpace...
Currently deep_copy of `UnorderedMap` can only happen between two specializations of exact same key and value type in the same scope. It would make sense to extent this to compatible...