Nader Al Awar

Results 26 comments of Nader Al Awar

I ended up forking this repo and https://github.com/ChrisCummins/bazel_llvm at https://github.com/NaderAlAwar/ProGraML/ and https://github.com/NaderAlAwar/bazel_llvm. I was able to add support for the latest release (13). Do you want me to submit a...

Yeah I was able to install it with my forked repo. PR to other repo is here ChrisCummins/bazel_llvm#6

In the [Kokkos wiki page for views](https://kokkos.github.io/kokkos-core-wiki/ProgrammingGuide/View.html#standard-idiom-for-specifying-access-traits), the recommendation is to specify memory traits as late as possible. It shouldn't be necessary to specify the memory trait when calling the...

@ma-sadeghi this is an issue that occurs when you import pykokkos from the python console. Could you try running one of the examples in the repo? Something like ``` cd...

The first warning is from Kokkos and is probably due to the pykokkos-base install being compiled with a different compute capability. If you do observe a reduction in performance, you...

@ma-sadeghi were you able to resolve the error?

` to C++ type 'Kokkos::View'` Whenever we gott this error and the Python type and C++ type were equivalent (same dtype, dimensionality, layout, and memory space), it was always caused...

@tylerjereddy can you confirm that this is working after I merged #59?

I've been looking into it, and I think the cause is the kernel argument caching in `parallel_dispatch.py` here https://github.com/kokkos/pykokkos/blob/a4108286fcc0fac28300670dbd35a494b00c4097/pykokkos/interface/parallel_dispatch.py#L220 I'm still figuring out the details, but @tylerjereddy could you try...

This error occurs when the .so file does not exist, usually because compilation failed. It's hard to know why compilation failed from this trace. Could you delete the `pk_cpp/` directory...