Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .circleci/config.yml #42

Merged
merged 3 commits into from
Aug 26, 2024
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ workflows:
- test:
name: "test-clang-15"
compiler: "clang"
version: "15"
version: "15"
4 changes: 2 additions & 2 deletions include/hpcombi/epu8.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ inline void merge(epu8 &a, epu8 &b) noexcept;
*/
#ifdef SIMDE_X86_SSE4_2_NATIVE
/** @copydoc common_permutation_of
@par Algorithm: uses string matching cpmestrm intrisics
@par Algorithm: uses string matching cpmestrm intrinsics
*/
inline epu8 permutation_of_cmpestrm(epu8 a, epu8 b) noexcept;
#endif
Expand Down Expand Up @@ -586,7 +586,7 @@ inline bool is_partial_permutation(epu8 v, const size_t k = 16) noexcept;
*/
#ifdef SIMDE_X86_SSE4_2_NATIVE
/** @copydoc common_is_permutation
@par Algorithm: uses string matching cpmestri intrisics
@par Algorithm: uses string matching cpmestri intrinsics
*/
inline bool is_permutation_cpmestri(epu8 v, const size_t k = 16) noexcept;
#endif
Expand Down
2 changes: 1 addition & 1 deletion list_builtin.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# List of intrisics used in HPCombi
# List of intrinsics used in HPCombi
# Format: <name>;<list of parameters>;<return value>
# line starting with # are comments
__builtin_ffs;0;0
Expand Down
Loading