Char Aznable

Results 16 issues of Char Aznable

Hi, I got the following error when attempted opening a file in the file list using the neovim plugin [denite.nvim](https://github.com/Shougo/denite.nvim)'s command [`:Denite file/rec`](https://github.com/Shougo/denite.nvim/blob/29ece0ca76408c191e3c5ed997b239efb4b38f58/doc/denite.txt#L1162). This command allows a fuzzy search of...

I have a usage case where I need to link my app against Boost::unit_test_framework dynamic library with BOOST_TEST_DYN_LINK defined. It seems boost-cmake only builds boost static libraries which causes the...

**Oni Version: 0.3.10** **Neovim Version (Linux only): 0.3.1** **Operating System: ubuntu 16.04** **Issue: ccls won't launch when using oni to edit a cpp file** **Expected behavior: ps aux |& grep...

This code gives the wrong result for doing a `KokkosBlas::scal` and `::axpy` when the input has different type than the output view: ```c++ #include #include #include #include #include using ExecutionSpace...

bug

```c++ #include #include using ExecutionSpace = Kokkos::DefaultExecutionSpace; using MemorySpace = ExecutionSpace::memory_space; using Device = Kokkos::Device; int main(int argc, char* argv[]) { Kokkos::initialize(argc,argv); { float a = 3, b = 2;...

Consider this code which generates two random CrsMatrix and call spgemm to multiple them: ```c++ #include #include #include #include #include #include #include using ExecutionSpace = Kokkos::DefaultExecutionSpace; using MemorySpace = ExecutionSpace::memory_space;...

Basically, this would be portable versions of cusparse's Csr2cscEx2() or coo2csr(). This would be very helpful for complicated algorithms that requires fine grained manipulation of the matrix between kernel calls.

feature request

Hi, I am trying to perform CCA on my 2 data sets, both of which are of shape 6030 samples by 499 features. I am using ``` cca = rcca.CCA(kernelcca...

question

Hi, I see there is a CMakeLists.txt in this repo and I have heard an on-going effort in the Boost community to modularize the individual boost packages. What is the...

discussion

This code throws `what(): Constructing View and initializing data with uninitialized execution space` error: ```c++ #include #include #include #include #include #include using ExecutionSpace = Kokkos::DefaultExecutionSpace; using MemorySpace = ExecutionSpace::memory_space; using...

Bug