diff --git a/cpp/daal/include/algorithms/algorithm_container_base_batch.h b/cpp/daal/include/algorithms/algorithm_container_base_batch.h index 2f2da045e30..2efe6fdf942 100644 --- a/cpp/daal/include/algorithms/algorithm_container_base_batch.h +++ b/cpp/daal/include/algorithms/algorithm_container_base_batch.h @@ -139,7 +139,7 @@ class AlgorithmContainerImpl : public AlgorithmContainer * * \tparam mode Computation mode of the algorithm, \ref ComputeMode * \tparam sse2Container Implementation for Intel(R) Streaming SIMD Extensions 2 (Intel(R) SSE2) - * \tparam sse42Container Implementation for Intel(R) Streaming SIMD Extensions 42 (Intel(R) SSE42) + * \tparam sse42Container Implementation for Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) * \tparam avx2Container Implementation for Intel(R) Advanced Vector Extensions 2 (Intel(R) AVX2) * \tparam avx512Container Implementation for Intel(R) Xeon(R) processors based on Intel AVX-512 */ diff --git a/cpp/daal/include/algorithms/algorithm_container_base_common.h b/cpp/daal/include/algorithms/algorithm_container_base_common.h index 0b51f65a48d..6d0c946fead 100644 --- a/cpp/daal/include/algorithms/algorithm_container_base_common.h +++ b/cpp/daal/include/algorithms/algorithm_container_base_common.h @@ -49,7 +49,7 @@ namespace interface1 * * \tparam mode Computation mode of the algorithm, \ref ComputeMode * \tparam sse2Container Implementation for Intel(R) Streaming SIMD Extensions 2 (Intel(R) SSE2) - * \tparam sse42Container Implementation for Intel(R) Streaming SIMD Extensions 42 (Intel(R) SSE42) + * \tparam sse42Container Implementation for Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) * \tparam avx2Container Implementation for Intel(R) Advanced Vector Extensions 2 (Intel(R) AVX2) * \tparam avx512Container Implementation for Intel(R) Xeon(R) processors based on Intel AVX-512 */ diff --git a/cpp/daal/include/services/daal_defines.h b/cpp/daal/include/services/daal_defines.h index 83d41d0eec4..786c4f02f37 100644 --- a/cpp/daal/include/services/daal_defines.h +++ b/cpp/daal/include/services/daal_defines.h @@ -130,7 +130,7 @@ namespace daal { /** * -* Computation modes of Intel(R) oneDAL algorithms +* Computation modes of Intel(R) oneAPI Data Analytics Library (oneDAL) algorithms */ enum ComputeMode { diff --git a/cpp/daal/include/services/daal_string.h b/cpp/daal/include/services/daal_string.h index 802b4f5194a..4342becfc54 100644 --- a/cpp/daal/include/services/daal_string.h +++ b/cpp/daal/include/services/daal_string.h @@ -17,7 +17,7 @@ /* //++ -// Intel(R) oneDAL string class. +// Intel(R) oneAPI Data Analytics Library (oneDAL) string class. //-- */ diff --git a/cpp/daal/include/services/error_handling.h b/cpp/daal/include/services/error_handling.h index b247c4f7cd1..58bc78a1f40 100644 --- a/cpp/daal/include/services/error_handling.h +++ b/cpp/daal/include/services/error_handling.h @@ -17,7 +17,7 @@ /* //++ -// Handling errors in Intel(R) oneDAL. +// Handling errors in Intel(R) oneAPI Data Analytics Library (oneDAL). //-- */ diff --git a/cpp/daal/include/services/error_id.h b/cpp/daal/include/services/error_id.h index 14ebe48c144..a4cb6913f78 100644 --- a/cpp/daal/include/services/error_id.h +++ b/cpp/daal/include/services/error_id.h @@ -17,7 +17,7 @@ /* //++ -// Data types for error handling in Intel(R) oneDAL. +// Data types for error handling in Intel(R) oneAPI Data Analytics Library (oneDAL). //-- */ diff --git a/cpp/daal/include/services/error_indexes.h b/cpp/daal/include/services/error_indexes.h index 6a8daf6b254..8d5ca7c79e7 100644 --- a/cpp/daal/include/services/error_indexes.h +++ b/cpp/daal/include/services/error_indexes.h @@ -17,7 +17,7 @@ /* //++ -// Details of errors in Intel(R) oneDAL. +// Details of errors in Intel(R) oneAPI Data Analytics Library (oneDAL). //-- */ diff --git a/cpp/daal/include/services/internal/execution_context.h b/cpp/daal/include/services/internal/execution_context.h index 0c70942f63f..ee2bb3bb395 100644 --- a/cpp/daal/include/services/internal/execution_context.h +++ b/cpp/daal/include/services/internal/execution_context.h @@ -58,7 +58,7 @@ class ExecutionContext : public Base // This branch is needed to avoid problems with deleting SYCL entities // after SYCL RT static objects are already released. // This is caused by "C++ static initialization order fiasco" problem between - // oneDAL static Environment object and internal static contexts of SYCL RT. + // Intel(R) oneAPI Data Analytics Library (oneDAL) static Environment object and internal static contexts of SYCL RT. // Here we solve this temporary with a small memory leak. // TODO: remove this after complete transition to DPC++ kernels. if (needEmptyDeleter) diff --git a/cpp/daal/include/services/internal/sycl/math/mkl_blas.h b/cpp/daal/include/services/internal/sycl/math/mkl_blas.h index a5df69fc2b3..73b2797b143 100644 --- a/cpp/daal/include/services/internal/sycl/math/mkl_blas.h +++ b/cpp/daal/include/services/internal/sycl/math/mkl_blas.h @@ -46,7 +46,7 @@ namespace interface1 /** * - * \brief Adapter for MKL GEMM routine + * \brief Adapter for Intel(R) MKL GEMM routine */ template struct MKLGemm @@ -112,7 +112,7 @@ struct MKLGemm /** * - * \brief Adapter for MKL SYRK routine + * \brief Adapter for Intel(R) MKL SYRK routine */ template struct MKLSyrk @@ -171,7 +171,7 @@ struct MKLSyrk /** * - * \brief Adapter for MKL AXPY routine + * \brief Adapter for Intel(R) MKL AXPY routine */ template struct MKLAxpy diff --git a/cpp/daal/include/services/internal/sycl/math/mkl_dal_utils.h b/cpp/daal/include/services/internal/sycl/math/mkl_dal_utils.h index c6a3567e873..0c39f4a6ab2 100644 --- a/cpp/daal/include/services/internal/sycl/math/mkl_dal_utils.h +++ b/cpp/daal/include/services/internal/sycl/math/mkl_dal_utils.h @@ -17,7 +17,7 @@ /* //++ -// Utility functions for DAL wrappers over MKL routines. +// Utility functions for DAL wrappers over Intel(R) MKL routines. //-- */ diff --git a/cpp/daal/include/services/internal/sycl/math/mkl_lapack.h b/cpp/daal/include/services/internal/sycl/math/mkl_lapack.h index 492ff84b5f3..32a2f65bf61 100644 --- a/cpp/daal/include/services/internal/sycl/math/mkl_lapack.h +++ b/cpp/daal/include/services/internal/sycl/math/mkl_lapack.h @@ -45,7 +45,7 @@ namespace interface1 /** * - * \brief Adapter for MKL POTRF routine + * \brief Adapter for Intel(R) MKL POTRF routine */ template struct MKLPotrf @@ -98,7 +98,7 @@ struct MKLPotrf /** *