这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions hwy/contrib/matvec/matvec_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@

// Reduce targets to avoid timeout under emulation.
#ifndef HWY_DISABLED_TARGETS
#define HWY_DISABLED_TARGETS \
(HWY_SVE2_128 | HWY_SVE2 | HWY_SVE_256 | HWY_NEON_WITHOUT_AES)
#define HWY_DISABLED_TARGETS (HWY_SVE2_128 | HWY_SVE2 | HWY_SVE_256 | HWY_NEON)
#endif

#include <stddef.h>
Expand Down
5 changes: 3 additions & 2 deletions hwy/tests/fma_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// For faster build on Arm. We still test SVE2_128, SVE and NEON.
// For faster Arm builds. We still test SVE2_128, SVE and HWY_NEON_WITHOUT_AES
// (HWY_NEON may already be disabled, which would leave only EMU128).
#ifndef HWY_DISABLED_TARGETS
#define HWY_DISABLED_TARGETS (HWY_SVE_256 | HWY_NEON_WITHOUT_AES | HWY_SVE2)
#define HWY_DISABLED_TARGETS (HWY_SVE_256 | HWY_NEON | HWY_SVE2)
#endif

#undef HWY_TARGET_INCLUDE
Expand Down
5 changes: 3 additions & 2 deletions hwy/tests/minmax_number_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// For faster build on Arm. We still test SVE, SVE2, and NEON.
// For faster Arm builds. We still test SVE2_128, SVE and HWY_NEON_WITHOUT_AES
// (HWY_NEON may already be disabled, which would leave only EMU128).
#ifndef HWY_DISABLED_TARGETS
#define HWY_DISABLED_TARGETS (HWY_NEON_WITHOUT_AES | HWY_SVE_256 | HWY_SVE2_128)
#define HWY_DISABLED_TARGETS (HWY_SVE_256 | HWY_NEON | HWY_SVE2)
#endif

#undef HWY_TARGET_INCLUDE
Expand Down
5 changes: 3 additions & 2 deletions hwy/tests/minmax_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// For faster build on Arm. We still test SVE, SVE2, and NEON.
// For faster Arm builds. We still test SVE2_128, SVE and HWY_NEON_WITHOUT_AES
// (HWY_NEON may already be disabled, which would leave only EMU128).
#ifndef HWY_DISABLED_TARGETS
#define HWY_DISABLED_TARGETS (HWY_NEON_WITHOUT_AES | HWY_SVE_256 | HWY_SVE2_128)
#define HWY_DISABLED_TARGETS (HWY_SVE_256 | HWY_NEON | HWY_SVE2)
#endif

#undef HWY_TARGET_INCLUDE
Expand Down