- Oct 25, 2019
-
-
Jakub Klinkovský authored
The usage of algorithms such as MemoryOperations or Reduction is not bound to a particular container. On the other hand, ArrayIO, ArrayAssignment, VectorAssignment and StaticArrayAssignment are just implementation details for the containers - moved into TNL/Containers/detail/ Also moved ParallelFor, StaticFor, StaticVectorFor, TemplateStaticFor into TNL/Algorithms/
-
Jakub Klinkovský authored
This will be necessary to avoid code bloat with more than 2 devices (execution types).
-
Jakub Klinkovský authored
Moved synchronization of smart pointers from Devices::Cuda into TNL::Pointers namespace as free functions synchronizeDevice() was renamed to synchronizeSmartPointersOnDevice() for clarity - there are many similarly named functions in CUDA (e.g. cudaDeviceSynchronize()).
-
Jakub Klinkovský authored
Moved (most of) static methods from TNL::Devices::Cuda as free functions into separate namespace TNL::Cuda The class TNL::Devices::Cuda was too bloated, breaking the Single Responsibility Principle. It should be used only for template specializations and other things common to all devices. The functions in MemoryHelpers.h are deprecated, smart pointers should be used instead. The functions in LaunchHelpers.h are temporary, more refactoring is needed with respect to execution policies and custom launch parameters.
-
- Oct 24, 2019
-
-
Jakub Klinkovský authored
Fixes #46
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
- Sep 03, 2019
-
-
Jakub Klinkovský authored
-
- Sep 02, 2019
-
-
Tomáš Oberhuber authored
-
- Aug 24, 2019
-
-
Jakub Klinkovský authored
-
- Aug 07, 2019
-
-
Jakub Klinkovský authored
-
- Aug 05, 2019
-
-
Jakub Klinkovský authored
-
- Aug 04, 2019
-
-
Jakub Klinkovský authored
getConstView should be always used for const operations, because explicit is better than implicit. Overloading one method for cases which have a completely different type (ConstViewType is *not* just a const-qualified ViewType) can be very unclear (or even ambiguous) in certain cases.
-
- Jul 27, 2019
-
-
Jakub Klinkovský authored
-
- Jul 26, 2019
-
-
Jakub Klinkovský authored
-
- Jul 11, 2019
-
-
Tomáš Oberhuber authored
-
- Jun 14, 2019
-
-
Tomáš Oberhuber authored
-
Tomáš Oberhuber authored
-
- Apr 19, 2019
-
-
Jakub Klinkovský authored
See #24
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
-
- Apr 11, 2019
-
-
Added getView() and getConstView() methods to Array, ArrayView, Vector, VectorView, DistributedArray, DistributedArrayView, DistributedVector and DistributedVectorView NDArray-style... TODO: update documentation and examples
-
Tomáš Oberhuber authored
-
-
-
-
Tomáš Oberhuber authored
-
- Apr 06, 2019
-
-
Jakub Klinkovský authored
-
- Mar 30, 2019
-
-
Jakub Klinkovský authored
Reference: https://stackoverflow.com/a/23766303 Documentation: https://cmake.org/cmake/help/latest/command/install.html#installing-directories
-
- Mar 08, 2019
-
-
Jakub Klinkovský authored
-
- Mar 02, 2019
-
-
Jakub Klinkovský authored
TODO: it should be added to other formats as well
-
Jakub Klinkovský authored
-
- Feb 09, 2019
-
-
Jakub Klinkovský authored
[ci skip]
-
- Jan 29, 2019
-
-
Jakub Klinkovský authored
-
- Jan 25, 2019
-
-
Jakub Klinkovský authored
-
Jakub Klinkovský authored
Return values are nicer than modifiable parameters. This also avoids the circular dependency between TNL::String and List.
-