Skip to content

Commit

Permalink
Use GDALTranspose2D_Byte_SSSE3() with ARM Neon
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jan 5, 2025
1 parent f01885b commit c202f56
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions gcore/rasterio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5830,6 +5830,13 @@ void GDALTranspose2D(const void *pSrc, GDALDataType eSrcType, void *pDst,
nSrcHeight);
return;
}
#elif defined(USE_NEON_OPTIMIZATIONS)
{
GDALTranspose2D_Byte_SSSE3(static_cast<const uint8_t *>(pSrc),
static_cast<uint8_t *>(pDst), nSrcWidth,
nSrcHeight);
return;
}
#endif
}

Expand Down

0 comments on commit c202f56

Please sign in to comment.