Skip to content

Commit

Permalink
update highway to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
luyahan committed May 7, 2024
1 parent b94d506 commit efd9879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/_core/src/highway
Submodule highway updated 59 files
+3 −3 .github/workflows/build_test.yml
+3 −3 .github/workflows/codeql.yml
+1 −1 .github/workflows/multiarch.yml
+22 −2 BUILD
+27 −12 CMakeLists.txt
+1 −1 MODULE.bazel
+1 −1 g3doc/faq.md
+6 −2 g3doc/op_wishlist.md
+22 −6 g3doc/quick_reference.md
+1 −1 hwy/aligned_allocator.h
+1 −0 hwy/aligned_allocator_test.cc
+31 −6 hwy/base.h
+187 −1 hwy/contrib/math/math-inl.h
+209 −5 hwy/contrib/math/math_test.cc
+12 −0 hwy/contrib/matvec/matvec_test.cc
+8 −5 hwy/contrib/sort/shared-inl.h
+3 −0 hwy/contrib/sort/sort_test.cc
+1 −1 hwy/contrib/sort/vqsort-inl.h
+6 −6 hwy/contrib/thread_pool/thread_pool_test.cc
+445 −0 hwy/contrib/thread_pool/topology.cc
+209 −0 hwy/contrib/thread_pool/topology.h
+228 −0 hwy/contrib/thread_pool/topology_test.cc
+39 −2 hwy/detect_compiler_arch.h
+29 −18 hwy/detect_targets.h
+2 −0 hwy/examples/skeleton_test.cc
+64 −3 hwy/highway.h
+454 −46 hwy/ops/arm_neon-inl.h
+54 −70 hwy/ops/arm_sve-inl.h
+192 −253 hwy/ops/emu128-inl.h
+176 −277 hwy/ops/generic_ops-inl.h
+409 −0 hwy/ops/inside-inl.h
+8 −37 hwy/ops/ppc_vsx-inl.h
+14 −62 hwy/ops/rvv-inl.h
+9 −3 hwy/ops/scalar-inl.h
+53 −8 hwy/ops/set_macros-inl.h
+1 −0 hwy/ops/shared-inl.h
+0 −125 hwy/ops/tuple-inl.h
+16 −60 hwy/ops/wasm_128-inl.h
+253 −225 hwy/ops/x86_128-inl.h
+27 −12 hwy/ops/x86_256-inl.h
+26 −17 hwy/ops/x86_512-inl.h
+5 −6 hwy/stats.h
+136 −2 hwy/targets.cc
+6 −7 hwy/targets.h
+16 −0 hwy/targets_test.cc
+1 −0 hwy/tests/arithmetic_test.cc
+10 −0 hwy/tests/convert_test.cc
+3 −0 hwy/tests/count_test.cc
+120 −9 hwy/tests/demote_test.cc
+2 −1 hwy/tests/hwy_gtest.h
+5 −0 hwy/tests/in_range_float_to_int_conv_test.cc
+1 −0 hwy/tests/minmax_test.cc
+8 −0 hwy/tests/mul_test.cc
+5 −0 hwy/tests/reduction_test.cc
+1 −0 hwy/tests/sums_abs_diff_test.cc
+1 −1 hwy/tests/swizzle_test.cc
+3 −0 hwy/tests/test_util-inl.h
+1 −0 hwy/tests/truncate_test.cc
+197 −6 hwy/tests/widen_mul_test.cc

0 comments on commit efd9879

Please sign in to comment.