Skip to content

Commit

Permalink
update Highway
Browse files Browse the repository at this point in the history
  • Loading branch information
osamu620 committed Oct 3, 2023
1 parent 4117696 commit ab64f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/highway
Submodule highway updated 51 files
+33 −3 .github/workflows/build_test.yml
+70 −0 .github/workflows/codeql.yml
+18 −0 BUILD
+16 −4 CMakeLists.txt
+6 −2 README.md
+1 −1 g3doc/design_philosophy.md
+40 −4 g3doc/faq.md
+19 −18 g3doc/op_wishlist.md
+222 −113 g3doc/quick_reference.md
+1 −1 hwy/aligned_allocator_test.cc
+242 −85 hwy/base.h
+70 −2 hwy/base_test.cc
+1 −1 hwy/contrib/dot/dot_test.cc
+18 −28 hwy/contrib/math/math_test.cc
+1 −1 hwy/contrib/sort/algo-inl.h
+1 −10 hwy/contrib/sort/result-inl.h
+150 −0 hwy/contrib/thread_pool/thread_pool.cc
+174 −0 hwy/contrib/thread_pool/thread_pool.h
+130 −0 hwy/contrib/thread_pool/thread_pool_test.cc
+11 −2 hwy/contrib/unroller/unroller_test.cc
+3 −1 hwy/detect_compiler_arch.h
+13 −1 hwy/detect_targets.h
+2 −0 hwy/highway_test.cc
+186 −121 hwy/ops/arm_neon-inl.h
+378 −24 hwy/ops/arm_sve-inl.h
+49 −32 hwy/ops/emu128-inl.h
+625 −31 hwy/ops/generic_ops-inl.h
+365 −268 hwy/ops/ppc_vsx-inl.h
+198 −44 hwy/ops/rvv-inl.h
+36 −26 hwy/ops/scalar-inl.h
+18 −3 hwy/ops/set_macros-inl.h
+41 −12 hwy/ops/shared-inl.h
+35 −121 hwy/ops/wasm_128-inl.h
+28 −28 hwy/ops/wasm_256-inl.h
+517 −329 hwy/ops/x86_128-inl.h
+512 −214 hwy/ops/x86_256-inl.h
+421 −228 hwy/ops/x86_512-inl.h
+1 −237 hwy/tests/arithmetic_test.cc
+7 −7 hwy/tests/blockwise_test.cc
+62 −0 hwy/tests/combine_test.cc
+127 −0 hwy/tests/convert_test.cc
+9 −3 hwy/tests/mask_mem_test.cc
+276 −0 hwy/tests/masked_arithmetic_test.cc
+275 −0 hwy/tests/minmax_test.cc
+2 −2 hwy/tests/mul_test.cc
+115 −30 hwy/tests/reduction_test.cc
+5 −5 hwy/tests/shift_test.cc
+12 −0 hwy/tests/test_util-inl.h
+27 −0 hwy/tests/test_util.h
+1 −1 hwy/tests/widen_mul_test.cc
+11 −0 hwy/timer.h

0 comments on commit ab64f78

Please sign in to comment.