oneDPL icon indicating copy to clipboard operation
oneDPL copied to clipboard

oneAPI DPC++ Library (oneDPL) https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/dpc-library.html

Results 386 oneDPL issues
Sort by recently updated
recently updated
newest added

Which functions were tested: - std::complex\::complex - constructor - std::complex\::imag - std::complex\::real - std::abs(std::complex\) - std::arg(std::complex\) - std::conj(std::complex\) - std::exp(std::complex\) - std::imag(std::complex\) - std::real(std::complex\) - arithmetic functions from https://en.cppreference.com/w/cpp/numeric/complex/operator_arith -...

In a CUDA program, a user can initialize and generate random numbers in the code snipet: ``` curandGenerator_t gen; curandCreateGenerator(&gen, CURAND_RNG_PSEUDO_DEFAULT); curandSetPseudoRandomGeneratorSeed(gen, seed); for (int i = 0; i <...

Added test for std::abs function which described at https://github.com/oneapi-src/oneDPL/issues/548

oneDPL has a variety of useful fancy iterators and views (transform, counting, iota, zip, permutation ...), but is missing an important type of iterator that can be used to fuse...

enhancement

[oneDPL] permutation_iterator and permutation_view improvements 1. Added support usage case like in Boost (https://www.boost.org/doc/libs/1_38_0/libs/iterator/doc/permutation_iterator.html) 2. Aded support C++ functor as an index map for permutation_iterator (https://oneapi-src.github.io/oneDPL/parallel_api/iterators.html). 3. Added support C++...

A fix for exclusive in-place scan. Fixed the second problem place (local serial scan within a workgroup) in oneDPL code. Added the caching of an input value for the next...