Skip to content

Commit 8639fef

Browse files
committed
typo fixes from codespell
1 parent 285b50d commit 8639fef

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

.packit/simde.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ License: MIT
1111
URL: https://github.com/simd-everywhere/simde
1212
# This value is magically replaced with the archive tar.gz file created by
1313
# `git archive` in the process of the CI.
14-
# Set the exsiting file `README.md` in case of creating SRPM from this RPM spec
14+
# Set the existing file `README.md` in case of creating SRPM from this RPM spec
1515
# file on local for testing purpose.
1616
Source0: README.md
1717
# A path to the CI script.

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Once the container is ready it will drop you into a bash shell in
1515
`/opt/simde`; this is the build directory.
1616

1717
This will bind the parent directory (the root of the SIMDe checkout)
18-
to `/usr/local/src/simde`; any changes to either will propogate to the
18+
to `/usr/local/src/simde`; any changes to either will propagate to the
1919
other, meaning you can continue using your normal development
2020
environment and just re-run ninja in the container to (re)build SIMDe.
2121

simde/simde-align.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
**********************************************************************
1212
*
1313
* This is portability layer which should help iron out some
14-
* differences across various compilers, as well as various verisons of
14+
* differences across various compilers, as well as various versions of
1515
* C and C++.
1616
*
1717
* It was originally developed for SIMD Everywhere
@@ -55,7 +55,7 @@
5555
#include "hedley.h"
5656

5757
/* I know this seems a little silly, but some non-hosted compilers
58-
* don't have stddef.h, so we try to accomodate them. */
58+
* don't have stddef.h, so we try to accommodate them. */
5959
#if !defined(SIMDE_ALIGN_SIZE_T_)
6060
#if defined(__SIZE_TYPE__)
6161
#define SIMDE_ALIGN_SIZE_T_ __SIZE_TYPE__
@@ -405,7 +405,7 @@
405405

406406
/* SIMDE_ALIGN_ASSUME_LIKE(Pointer, Type)
407407
*
408-
* Tihs is similar to SIMDE_ALIGN_ASSUME_TO, except that it takes a
408+
* This is similar to SIMDE_ALIGN_ASSUME_TO, except that it takes a
409409
* type instead of a numeric value. */
410410
#if defined(SIMDE_ALIGN_OF) && defined(SIMDE_ALIGN_ASSUME_TO)
411411
#define SIMDE_ALIGN_ASSUME_LIKE(Pointer, Type) SIMDE_ALIGN_ASSUME_TO(Pointer, SIMDE_ALIGN_OF(Type))

simde/simde-complex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
/* Support for complex math.
2828
*
29-
* We try to avoid inculding <complex> (in C++ mode) since it pulls in
29+
* We try to avoid including <complex> (in C++ mode) since it pulls in
3030
* a *lot* of code. Unfortunately this only works for GNU modes (i.e.,
3131
* -std=gnu++14 not -std=c++14) unless you pass -fext-numeric-literals,
3232
* but there is no way (AFAICT) to detect that flag so we have to rely

simde/simde-diagnostic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@
272272
#define SIMDE_DIAGNOSTIC_DISABLE_CAST_FUNCTION_TYPE_
273273
#endif
274274

275-
/* clang will emit this warning when we use C99 extensions whan not in
275+
/* clang will emit this warning when we use C99 extensions when not in
276276
* C99 mode, even though it does support this. In such cases we check
277277
* the compiler and version first, so we know it's not a problem. */
278278
#if HEDLEY_HAS_WARNING("-Wc99-extensions")

simde/simde-f16.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ SIMDE_BEGIN_DECLS_
5858
* that on Arm since it would break compatibility with the NEON F16
5959
* functions. */
6060
#define SIMDE_FLOAT16_API_FP16_NO_ABI 3
61-
/* This is basically __fp16 as specified by Arm, where arugments and
61+
/* This is basically __fp16 as specified by Arm, where arguments and
6262
* return values are raw __fp16 values not structs. */
6363
#define SIMDE_FLOAT16_API_FP16 4
6464

simde/x86/avx512/xorsign.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*/
2727

2828
/* This is a SIMDe extension which is not part of AVX-512. It exists
29-
* because a lot of numerical methods in SIMDe have algoriths which do
29+
* because a lot of numerical methods in SIMDe have algorithms which do
3030
* something like:
3131
*
3232
* float sgn = input < 0 ? -1 : 1;

simde/x86/sse.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ simde_mm_move_ss (simde__m128 a, simde__m128 b) {
804804
SIMDE_FUNCTION_ATTRIBUTES
805805
simde__m128
806806
simde_x_mm_broadcastlow_ps(simde__m128 a) {
807-
/* This function broadcasts the first element in the inpu vector to
807+
/* This function broadcasts the first element in the input vector to
808808
* all lanes. It is used to avoid generating spurious exceptions in
809809
* *_ss functions since there may be garbage in the upper lanes. */
810810

test/x86/f16c.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ test_simde_mm_cvtps_ph (SIMDE_MUNIT_TEST_ARGS) {
5454
{ INT16_C( 25352), INT16_C( 24774), -INT16_C( 8787), INT16_C( 25507), INT16_C( 0), INT16_C( 0), INT16_C( 0), INT16_C( 0) } },
5555

5656
#if 0
57-
// simde_mm_cvtps_ph doesn't handle the rounding paramter at all
57+
// simde_mm_cvtps_ph doesn't handle the rounding parameter at all
5858
{ { SIMDE_FLOAT32_C( 9204.05), SIMDE_FLOAT32_C( 86132.80), SIMDE_FLOAT32_C( 37121.74), SIMDE_FLOAT32_C( 68581.13) },
5959
{ INT16_C( 28799), INT16_C( 31744), INT16_C( 30856), INT16_C( 31744), INT16_C( 0), INT16_C( 0), INT16_C( 0), INT16_C( 0) },
6060
{ INT16_C( 28798), INT16_C( 31743), INT16_C( 30856), INT16_C( 31743), INT16_C( 0), INT16_C( 0), INT16_C( 0), INT16_C( 0) },

0 commit comments

Comments
 (0)