Skip to content

Commit

Permalink
deps: update simdutf to 3.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nodejs-github-bot committed May 22, 2023
1 parent 1ba7ad7 commit 60d7046
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions deps/simdutf/simdutf.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2023-05-22 13:05:15 -0400. Do not edit! */
/* auto-generated on 2023-05-22 13:06:02 -0400. Do not edit! */
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/src, filename=simdutf.cpp
/* begin file src/simdutf.cpp */
#include "simdutf.h"
Expand Down Expand Up @@ -2063,8 +2063,7 @@ struct base16: base<simd16<T>> {
simdutf_really_inline base16(const __m256i _value) : base<simd16<T>>(_value) {}
template <typename Pointer>
simdutf_really_inline base16(const Pointer* ptr) : base16(_mm256_loadu_si256(reinterpret_cast<const __m256i*>(ptr))) {}

simdutf_really_inline Mask operator==(const simd16<T> other) const { return _mm256_cmpeq_epi16(*this, other); }
friend simdutf_really_inline Mask operator==(const simd16<T> lhs, const simd16<T> rhs) { return _mm256_cmpeq_epi16(lhs, rhs); }

/// the size of vector in bytes
static const int SIZE = sizeof(base<simd16<T>>::value);
Expand Down
6 changes: 3 additions & 3 deletions deps/simdutf/simdutf.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* auto-generated on 2023-05-22 13:05:15 -0400. Do not edit! */
/* auto-generated on 2023-05-22 13:06:02 -0400. Do not edit! */
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/include, filename=simdutf.h
/* begin file include/simdutf.h */
#ifndef SIMDUTF_H
Expand Down Expand Up @@ -574,7 +574,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
#define SIMDUTF_SIMDUTF_VERSION_H
/** The version of simdutf being used (major.minor.revision) */
#define SIMDUTF_VERSION "3.2.10"
#define SIMDUTF_VERSION "3.2.11"
namespace simdutf {
enum {
Expand All @@ -589,7 +589,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdutf being used.
*/
SIMDUTF_VERSION_REVISION = 10
SIMDUTF_VERSION_REVISION = 11
};
} // namespace simdutf
Expand Down

0 comments on commit 60d7046

Please sign in to comment.