Sergey Kopienko

Results 60 issues of Sergey Kopienko

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 -...

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

Required to extend test coverage for std::complex operations: https://en.cppreference.com/w/cpp/numeric/complex/operator_arith, https://en.cppreference.com/w/cpp/numeric/complex/operator_arith2, https://en.cppreference.com/w/cpp/numeric/complex/operator_arith3, https://en.cppreference.com/w/cpp/numeric/complex/operator_cmp, https://en.cppreference.com/w/cpp/numeric/complex/operator%3D, https://en.cppreference.com/w/cpp/numeric/complex/operator_ltltgtgt and some other functions.

enhancement

Let's instead clarify that we tested ``std::abs(std::complex)``, move the record next to ``std::complex`` in the table, and add another task to extend test coverage for abs. _Originally posted by @akukanov...

enhancement

Removed support of C++11 and C++14 from oneDPL library.

Normalized include guard names in header files: - in file https://github.com/oneapi-src/oneDPL/blob/dev/skopienko/fix_include_guard_names_in_oneapi_dpl_headers/.clang-format we have next line: **BasedOnStyle: LLVM** - This line mean that we should create header file guards as described...