repo_name
stringclasses
10 values
file_path
stringlengths
29
222
content
stringlengths
24
926k
extention
stringclasses
5 values
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/core/declarations.hpp
#pragma once namespace tf { // ---------------------------------------------------------------------------- // taskflow // ---------------------------------------------------------------------------- class AsyncTopology; class Node; class Graph; class FlowBuilder; class Semaphore; class Subflow; class Runtime; class ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/core/executor-module-opt.hpp
#pragma once #include "observer.hpp" #include "taskflow.hpp" /** @file executor.hpp @brief executor include file */ namespace tf { // ---------------------------------------------------------------------------- // Executor Definition // ---------------------------------------------------------------------------- /...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/core/worker.hpp
#pragma once #include "declarations.hpp" #include "tsq.hpp" #include "notifier.hpp" /** @file worker.hpp @brief worker include file */ namespace tf { // ---------------------------------------------------------------------------- // Class Definition: Worker // -------------------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/core/flow_builder.hpp
#pragma once #include "task.hpp" /** @file flow_builder.hpp @brief flow builder include file */ namespace tf { /** @class FlowBuilder @brief class to build a task dependency graph The class provides essential methods to construct a task dependency graph from which tf::Taskflow and tf::Subflow are derived. */ cla...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/traits.hpp
#pragma once #include <type_traits> #include <iterator> #include <iostream> #include <fstream> #include <mutex> #include <stack> #include <queue> #include <vector> #include <algorithm> #include <memory> #include <atomic> #include <thread> #include <future> #include <functional> #include <unordered_map> #include <unord...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/singleton.hpp
#pragma once namespace tf { /** @class Singleton @brief class template to create a thread-safe singleton object */ template <typename T> class Singleton { public: /** @brief get a reference to the singleton object */ inline static T& get() { static T instance; return instance; } private: ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/object_pool.hpp
// 2020/03/13 - modified by Tsung-Wei Huang // - fixed bug in aligning memory // // 2020/02/02 - modified by Tsung-Wei Huang // - new implementation motivated by Hoard // // 2019/07/10 - modified by Tsung-Wei Huang // - replace raw pointer with smart pointer // // 2019/06/13 - created by Tsung-Wei Huang // - implem...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/macros.hpp
#pragma once #if defined(_MSC_VER) #define TF_FORCE_INLINE __forceinline #elif defined(__GNUC__) && __GNUC__ > 3 #define TF_FORCE_INLINE __attribute__((__always_inline__)) inline #else #define TF_FORCE_INLINE inline #endif #if defined(_MSC_VER) #define TF_NO_INLINE __declspec(noinline) #elif defined(__GNUC__)...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/stream.hpp
#pragma once #include <iostream> #include <string> namespace tf { // Procedure: ostreamize template <typename T> void ostreamize(std::ostream& os, T&& token) { os << std::forward<T>(token); } // Procedure: ostreamize template <typename T, typename... Rest> void ostreamize(std::ostream& os, T&& token, Rest&&... re...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/uuid.hpp
#pragma once #include <iostream> #include <string> #include <cstring> #include <limits> #include <random> #include <chrono> namespace tf { // Class: UUID // // A universally unique identifier (UUID) is an identifier standard used in software // construction. A UUID is simply a 128-bit value. The meaning of each bit ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/math.hpp
#pragma once #include <atomic> namespace tf { // rounds the given 64-bit unsigned integer to the nearest power of 2 template <typename T, std::enable_if_t< (std::is_unsigned_v<std::decay_t<T>> && sizeof(T) == 8) , void >* = nullptr> constexpr T next_pow2(T x) { if(x == 0) return 1; x--; x |= x>>1; x |= x>>2...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/iterator.hpp
#pragma once #include <cstddef> #include <type_traits> namespace tf { template <typename T> constexpr std::enable_if_t<std::is_integral<std::decay_t<T>>::value, size_t> distance(T beg, T end, T step) { return (end - beg + step + (step > 0 ? -1 : 1)) / step; } template <typename T> constexpr std::enable_if_t<std::...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/serializer.hpp
#pragma once #include <type_traits> #include <iterator> #include <iostream> #include <fstream> #include <stack> #include <queue> #include <vector> #include <algorithm> #include <memory> #include <functional> #include <map> #include <set> #include <unordered_map> #include <unordered_set> #include <sstream> #include <li...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/os.hpp
#pragma once #include <cstdlib> #include <cstdio> #include <string> #define TF_OS_LINUX 0 #define TF_OS_DRAGONFLY 0 #define TF_OS_FREEBSD 0 #define TF_OS_NETBSD 0 #define TF_OS_OPENBSD 0 #define TF_OS_DARWIN 0 #define TF_OS_WINDOWS 0 #define TF_OS_CNK 0 #define TF_OS_HURD 0 #define TF_OS_SOLARIS 0 #define TF_OS_UNIX ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/utility/small_vector.hpp
// small vector modified from llvm #pragma once #include <algorithm> #include <cassert> #include <cstddef> #include <cstdlib> #include <cstring> #include <initializer_list> #include <iterator> #include <memory> #if defined(__GNUC__) #define TF_LIKELY(x) (__builtin_expect((x), 1)) #define TF_UNLIKELY(x) (__builti...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/sycl/sycl_graph.hpp
#pragma once #include <CL/sycl.hpp> #include "sycl_meta.hpp" namespace tf { // ---------------------------------------------------------------------------- // syclGraph class // ---------------------------------------------------------------------------- // class: syclGraph class syclGraph : public CustomGraphBase...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/sycl/sycl_task.hpp
#pragma once #include "sycl_graph.hpp" /** @file sycl_task.hpp @brief syclTask include file */ namespace tf { // ---------------------------------------------------------------------------- // syclTask // ---------------------------------------------------------------------------- /** @class syclTask @brief handl...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/sycl/sycl_execution_policy.hpp
#pragma once /** @file sycl_execution_policy.hpp @brief SYCL execution policy include file */ namespace tf { /** @class syclExecutionPolicy @brief class to define execution policy for SYCL standard algorithms @tparam NT number of threads per block @tparam VT number of work units per thread Execution policy config...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/sycl/sycl_meta.hpp
#pragma once #include "sycl_execution_policy.hpp" namespace tf { // default warp size inline constexpr unsigned SYCL_WARP_SIZE = 32; // empty type struct syclEmpty { }; // ---------------------------------------------------------------------------- // iterator unrolling // -----------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/sycl/syclflow.hpp
#pragma once #include "../taskflow.hpp" #include "sycl_task.hpp" /** @file syclflow.hpp @brief main syclFlow include file */ namespace tf { // ---------------------------------------------------------------------------- // class definition: syclFlow // ---------------------------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/sycl/algorithm/sycl_transform.hpp
#pragma once #include "../sycl_flow.hpp" namespace tf { // Function: _transform_cgh template <typename I, typename C, typename... S> auto syclFlow::_transform_cgh(I first, I last, C&& op, S... srcs) { // TODO: special case N == 0? size_t N = std::distance(first, last); size_t B = _default_group_size(N); re...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/sycl/algorithm/reduce.hpp
#pragma once #include "../syclflow.hpp" namespace tf::detail { // ---------------------------------------------------------------------------- // reduction helper functions // ---------------------------------------------------------------------------- /** @private */ template<unsigned nt, typename T> struct syclBl...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/sycl/algorithm/sycl_for_each.hpp
#pragma once #include "../sycl_flow.hpp" namespace tf { // command group function object of for_each template <typename I, typename C> auto syclFlow::_for_each_cgh(I first, I last, C&& op) { // TODO: special case N == 0? size_t N = std::distance(first, last); size_t B = _default_group_size(N); return [=, o...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/sort.hpp
#pragma once #include "../core/executor.hpp" namespace tf { // threshold whether or not to perform parallel sort template <typename I> constexpr size_t parallel_sort_cutoff() { //using value_type = std::decay_t<decltype(*std::declval<I>())>; using value_type = typename std::iterator_traits<I>::value_type; co...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/for_each.hpp
// reference: // - gomp: https://github.com/gcc-mirror/gcc/blob/master/libgomp/iter.c // - komp: https://github.com/llvm-mirror/openmp/blob/master/runtime/src/kmp_dispatch.cpp #pragma once #include "../core/executor.hpp" namespace tf { // ---------------------------------------------------------------------------- ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/reduce.hpp
#pragma once #include "../core/executor.hpp" namespace tf { // ---------------------------------------------------------------------------- // default reduction // ---------------------------------------------------------------------------- template <typename B, typename E, typename T, typename O> Task FlowBuilder:...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/critical.hpp
#pragma once #include "../core/task.hpp" /** @file critical.hpp @brief critical include file */ namespace tf { // ---------------------------------------------------------------------------- // CriticalSection // ---------------------------------------------------------------------------- /** @class CriticalSectio...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/data_pipeline.hpp
#pragma once #include "pipeline.hpp" namespace tf { // ---------------------------------------------------------------------------- // Class Definition: DataPipe // ---------------------------------------------------------------------------- /** @class DataPipe @brief class to create a stage in a data-parallel pi...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/launch.hpp
#pragma once #include "../core/async.hpp" namespace tf { // Function: launch_loop template <typename P, typename Loop> TF_FORCE_INLINE void launch_loop( size_t N, size_t W, Runtime& rt, std::atomic<size_t>& next, P&& part, Loop&& loop ) { //static_assert(std::is_lvalue_reference_v<Loop>, ""); ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/pipeline.hpp
#pragma once #include "../taskflow.hpp" /** @file pipeline.hpp @brief pipeline include file */ namespace tf { // ---------------------------------------------------------------------------- // Structure Definition: DeferredPipeflow // ---------------------------------------------------------------------------- // ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/scan.hpp
#pragma once #include "launch.hpp" namespace tf { namespace detail { // Function: scan_loop template <typename Iterator, typename BufferT, typename B> TF_FORCE_INLINE void scan_loop( tf::Runtime& rt, std::atomic<size_t>& counter, BufferT& buf, B&& bop, Iterator d_beg, size_t W, size_t w, size_t...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/find.hpp
#pragma once #include "launch.hpp" namespace tf { namespace detail { // Function: find_if_loop template <typename Iterator, typename Predicate> TF_FORCE_INLINE bool find_if_loop( std::atomic<size_t>& offset, Iterator& beg, size_t& prev_e, size_t curr_b, size_t curr_e, Predicate&& predicate ) { // ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/transform.hpp
#pragma once #include "../core/executor.hpp" namespace tf { // ---------------------------------------------------------------------------- // default transform // ---------------------------------------------------------------------------- // Function: transform template <typename B, typename E, typename O, typena...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/algorithm/partitioner.hpp
// reference: // - gomp: https://github.com/gcc-mirror/gcc/blob/master/libgomp/iter.c // - komp: https://github.com/llvm-mirror/openmp/blob/master/runtime/src/kmp_dispatch.cpp #pragma once /** @file partitioner.hpp @brief partitioner include file */ namespace tf { // ------------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cudaflow.hpp
#pragma once #include "../taskflow.hpp" #include "cuda_task.hpp" #include "cuda_capturer.hpp" /** @file taskflow/cuda/cudaflow.hpp @brief cudaFlow include file */ namespace tf { // ---------------------------------------------------------------------------- // class definition: cudaFlow // -------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_task.hpp
#pragma once #include "cuda_graph.hpp" /** @file cuda_task.hpp @brief cudaTask include file */ namespace tf { // ---------------------------------------------------------------------------- // cudaTask Types // ---------------------------------------------------------------------------- /** @enum cudaTaskType @br...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_execution_policy.hpp
#pragma once #include "cuda_error.hpp" /** @file cuda_execution_policy.hpp @brief CUDA execution policy include file */ namespace tf { /** @class cudaExecutionPolicy @brief class to define execution policy for CUDA standard algorithms @tparam NT number of threads per block @tparam VT number of work units per thre...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_stream.hpp
#pragma once #include "cuda_pool.hpp" /** @file cuda_stream.hpp @brief CUDA stream utilities include file */ namespace tf { // ---------------------------------------------------------------------------- // cudaStream // ---------------------------------------------------------------------------- /** @class cudaSt...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_error.hpp
#pragma once #include <cuda.h> #include <iostream> #include <sstream> #include <exception> #include "../utility/stream.hpp" #define TF_CUDA_EXPAND( x ) x #define TF_CUDA_REMOVE_FIRST_HELPER(N, ...) __VA_ARGS__ #define TF_CUDA_REMOVE_FIRST(...) TF_CUDA_EXPAND(TF_CUDA_REMOVE_FIRST_HELPER(__VA_ARGS__)) #define TF_CUDA_...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_optimizer.hpp
#pragma once #include "cuda_graph.hpp" /** @file cuda_optimizer.hpp @brief %cudaFlow capturing algorithms include file */ namespace tf { // ---------------------------------------------------------------------------- // cudaCapturingBase // ---------------------------------------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_pool.hpp
#pragma once #include "cuda_error.hpp" namespace tf { /** @brief per-thread object pool to manage CUDA device object @tparam H object type @tparam C function object to create a library object @tparam D function object to delete a library object A CUDA device object has a lifetime associated with a device, for exam...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_graph.hpp
#pragma once #include "cuda_memory.hpp" #include "cuda_stream.hpp" #include "cuda_meta.hpp" #include "../utility/traits.hpp" namespace tf { // ---------------------------------------------------------------------------- // cudaGraph_t routines // ---------------------------------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_object.hpp
#pragma once #include "cuda_error.hpp" namespace tf { /** @brief per-thread object pool to manage CUDA device object @tparam H object type @tparam C function object to create a library object @tparam D function object to delete a library object A CUDA device object has a lifetime associated with a device, for exam...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_meta.hpp
#pragma once #include "cuda_execution_policy.hpp" namespace tf { // default warp size inline constexpr unsigned CUDA_WARP_SIZE = 32; // empty type struct cudaEmpty { }; // ---------------------------------------------------------------------------- // iterator unrolling // -----------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_device.hpp
#pragma once #include "cuda_error.hpp" /** @file cuda_device.hpp @brief CUDA device utilities include file */ namespace tf { /** @brief queries the number of available devices */ inline size_t cuda_get_num_devices() { int N = 0; TF_CHECK_CUDA(cudaGetDeviceCount(&N), "failed to get device count"); return static_...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_memory.hpp
#pragma once #include "cuda_device.hpp" /** @file cuda_memory.hpp @brief CUDA memory utilities include file */ namespace tf { // ---------------------------------------------------------------------------- // memory // ---------------------------------------------------------------------------- /** @brief queries ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/cuda_capturer.hpp
#pragma once #include "cuda_task.hpp" #include "cuda_optimizer.hpp" /** @file cuda_capturer.hpp @brief %cudaFlow capturer include file */ namespace tf { // ---------------------------------------------------------------------------- // class definition: cudaFlowCapturer // ------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/sort.hpp
#pragma once #include "merge.hpp" /** @file taskflow/cuda/algorithm/sort.hpp @brief CUDA sort algorithm include file */ namespace tf::detail { // ---------------------------------------------------------------------------- // odd-even sort in register // -------------------------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/for_each.hpp
#pragma once #include "../cudaflow.hpp" /** @file taskflow/cuda/algorithm/for_each.hpp @brief cuda parallel-iteration algorithms include file */ namespace tf { namespace detail { /** @private */ template <typename P, typename I, typename C> void cuda_for_each_loop(P&& p, I first, unsigned count, C c) { using E ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/transpose.hpp
#pragma once #include "../cuda_error.hpp" namespace tf { // ---------------------------------------------------------------------------- // row-wise matrix transpose // ---------------------------------------------------------------------------- // template <typename T> __global__ void cuda_transpose( const T* d_i...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/reduce.hpp
#pragma once #include "../cudaflow.hpp" /** @file taskflow/cuda/algorithm/reduce.hpp @brief cuda reduce algorithms include file */ namespace tf::detail { // ---------------------------------------------------------------------------- // reduction helper functions // -------------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/matmul.hpp
#pragma once #include "../cudaflow.hpp" namespace tf { // ---------------------------------------------------------------------------- // row-major matrix multiplication // ---------------------------------------------------------------------------- template <typename T> __global__ void cuda_matmul( const T* A, ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/scan.hpp
#pragma once #include "reduce.hpp" /** @file taskflow/cuda/algorithm/scan.hpp @brief CUDA scan algorithm include file */ namespace tf::detail { // ---------------------------------------------------------------------------- // scan // ---------------------------------------------------------------------------- /**...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/find.hpp
#pragma once #include "for_each.hpp" #include "reduce.hpp" /** @file taskflow/cuda/algorithm/find.hpp @brief cuda find algorithms include file */ namespace tf::detail { /** @private */ template <typename T> struct cudaFindPair { T key; unsigned index; __device__ operator unsigned () const { return index; } ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/transform.hpp
#pragma once #include "../cudaflow.hpp" /** @file taskflow/cuda/algorithm/transform.hpp @brief cuda parallel-transform algorithms include file */ namespace tf { // ---------------------------------------------------------------------------- // transform // -----------------------------------------------------------...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Common/taskflow/cuda/algorithm/merge.hpp
#pragma once #include "../cudaflow.hpp" /** @file taskflow/cuda/algorithm/merge.hpp @brief CUDA merge algorithm include file */ namespace tf::detail { /** @private @brief merge bound type */ enum class cudaMergeBoundType { LOWER, UPPER }; /** @private */ template<typename T, unsigned N> struct cudaMergePair { ...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/Samples/3_CUDA_Features/simpleCudaGraphs/simpleCudaGraphs.dp.cpp
//========================================================= // Modifications Copyright © 2022 Intel Corporation // // SPDX-License-Identifier: BSD-3-Clause //========================================================= /* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source ...
cpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/ccl_utils.hpp
//==---- ccl_utils.hpp----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===/...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/util.hpp
//==---- util.hpp ---------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/image.hpp
//==---- image.hpp --------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/kernel.hpp
//==---- kernel.hpp -------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpct.hpp
//==---- dpct.hpp ---------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dnnl_utils.hpp
//==---- dnnl_utils.hpp ---------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/lapack_utils.hpp
//==---- lapack_utils.hpp -------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/fft_utils.hpp
//==---- fft_utils.hpp ----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/lib_common_utils.hpp
//==---- lib_common_utils.hpp ---------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/sparse_utils.hpp
//==---- sparse_utils.hpp -------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/device.hpp
//==---- device.hpp -------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/memory.hpp
//==---- memory.hpp -------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpl_utils.hpp
//==---- dpl_utils.hpp ----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/math.hpp
//==---- math.hpp ---------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/blas_utils.hpp
//==---- blas_utils.hpp----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/atomic.hpp
//==---- atomic.hpp -------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/rng_utils.hpp
//==---- rng_utils.hpp ----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/numeric.h
//==---- numeric.h --------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/iterators.h
//==---- iterators.h ------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/algorithm.h
//==---- algorithm.h ------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/memory.h
//==---- memory.h ---------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/vector.h
//==---- vector.h ---------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/dpcpp_extensions.h
//==---- dpcpp_extensions.h ------------------*- C++ -*---------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------===// #ifndef ...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/02_sycl_migrated/include/dpct/dpl_extras/functional.h
//==---- functional.h -----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/Common/helper_string.h
/* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of condi...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/Common/helper_cuda.h
/* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of condi...
h
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/Samples/3_CUDA_Features/simpleCudaGraphs/simpleCudaGraphs.dp.cpp
/* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of condi...
cpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/ccl_utils.hpp
//==---- ccl_utils.hpp----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===/...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/util.hpp
//==---- util.hpp ---------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/image.hpp
//==---- image.hpp --------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/kernel.hpp
//==---- kernel.hpp -------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/dpct.hpp
//==---- dpct.hpp ---------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/dnnl_utils.hpp
//==---- dnnl_utils.hpp ---------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/lapack_utils.hpp
//==---- lapack_utils.hpp -------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/fft_utils.hpp
//==---- fft_utils.hpp ----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/lib_common_utils.hpp
//==---- lib_common_utils.hpp ---------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/sparse_utils.hpp
//==---- sparse_utils.hpp -------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/device.hpp
//==---- device.hpp -------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/memory.hpp
//==---- memory.hpp -------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/dpl_utils.hpp
//==---- dpl_utils.hpp ----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/math.hpp
//==---- math.hpp ---------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/blas_utils.hpp
//==---- blas_utils.hpp----------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp
oneAPI-samples
data/projects/oneAPI-samples/DirectProgramming/C++SYCL/DenseLinearAlgebra/guided_simpleCudaGraphs_SYCLMigration/01_dpct_output/include/dpct/atomic.hpp
//==---- atomic.hpp -------------------------------*- C++ -*----------------==// // // Copyright (C) Intel Corporation // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // See https://llvm.org/LICENSE.txt for license information. // //===----------------------------------------------------------------------===...
hpp