Skip to content

Commit

Permalink
Fix compiler condition in data_conversion_cpu (uxlfoundation#2559)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexsandruss authored Oct 25, 2023
1 parent 4ca1eca commit 2850633
Showing 1 changed file with 1 addition and 1 deletion.
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(__INTEL_COMPILER)
#if defined(__AVX512F__) && defined(DAAL_INTEL_CPP_COMPILER)
template <typename T>
void vectorCopyInternal()
{
Expand Down

0 comments on commit 2850633

Please sign in to comment.