Skip to content

Commit

Permalink
Change data_management compiler if-defined (#2557)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexsandruss committed Oct 24, 2023
1 parent 2e51ed9 commit 4ca1eca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpp/daal/src/data_management/data_conversion_cpu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace data_management
namespace internal
{
/* only for AVX512 architecture with using intrinsics */
#if defined(__AVX512F__) && defined(DAAL_INTEL_CPP_COMPILER)
#if defined(__INTEL_COMPILER)
template <typename T>
void vectorCopyInternal()
{
Expand Down
2 changes: 1 addition & 1 deletion cpp/daal/src/data_management/finiteness_checker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ bool checkFinitenessSOA(NumericTable & table, bool allowNaN, services::Status &
return valuesAreFinite;
}

#if defined(__AVX512F__) && defined(DAAL_INTEL_CPP_COMPILER)
#if defined(__INTEL_COMPILER)

const size_t BLOCK_SIZE = 8192;
const size_t THREADING_BORDER = 262144;
Expand Down

0 comments on commit 4ca1eca

Please sign in to comment.