Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jun 9, 2024
1 parent 8952ed5 commit 439f86f
Show file tree
Hide file tree
Showing 294 changed files with 8,503 additions and 1,517 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ jobs:
# Replace branch in README.md link definitions for badges with the new version:
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei "s/branch([=:])[^ ]+/branch\1v${NEW_VERSION}/g"
# Replace `Unreleased` in the CHANGELOG.md file with the new version:
sed -Ei "s/Unreleased/${NEW_VERSION}/g" CHANGELOG.md
sed -Ei "s/unreleased/v${NEW_VERSION}/g" CHANGELOG.md
# Create a new commit and tag:
git add package.json README.md
git commit -m "Release v${NEW_VERSION}"
Expand Down
6,985 changes: 6,984 additions & 1 deletion CHANGELOG.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Frank Kovacs <[email protected]>
Golden Kumar <[email protected]>
Gunj Joshi <[email protected]>
Harshita Kalani <[email protected]>
Hridyanshu <[email protected]>
Jaimin Godhani <[email protected]>
James Gelok <[email protected]>
Jaysukh Makvana <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion base/assign/examples/c/c_c/example.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "stdlib/ndarray/index_modes.h"
#include "stdlib/ndarray/orders.h"
#include "stdlib/ndarray/ctor.h"
#include "stdlib/complex/float32.h"
#include "stdlib/complex/float32/ctor.h"
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
Expand Down
4 changes: 2 additions & 2 deletions base/assign/examples/c/c_z/example.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
#include "stdlib/ndarray/index_modes.h"
#include "stdlib/ndarray/orders.h"
#include "stdlib/ndarray/ctor.h"
#include "stdlib/complex/float32.h"
#include "stdlib/complex/float64.h"
#include "stdlib/complex/float32/ctor.h"
#include "stdlib/complex/float64/ctor.h"
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion base/assign/examples/c/d_z/example.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "stdlib/ndarray/index_modes.h"
#include "stdlib/ndarray/orders.h"
#include "stdlib/ndarray/ctor.h"
#include "stdlib/complex/float64.h"
#include "stdlib/complex/float64/ctor.h"
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion base/assign/examples/c/z_z/example.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "stdlib/ndarray/index_modes.h"
#include "stdlib/ndarray/orders.h"
#include "stdlib/ndarray/ctor.h"
#include "stdlib/complex/float64.h"
#include "stdlib/complex/float64/ctor.h"
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/10d.h
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_10D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -428,7 +428,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_10D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_10D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -699,7 +699,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_10D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/1d.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_1D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -176,7 +176,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_1D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/2d.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_2D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -220,7 +220,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_2D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_2D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -331,7 +331,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_2D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_3D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -246,7 +246,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_3D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_3D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -377,7 +377,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_3D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/4d.h
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_4D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -272,7 +272,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_4D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_4D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -423,7 +423,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_4D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/5d.h
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_5D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -298,7 +298,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_5D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_5D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -469,7 +469,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_5D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/6d.h
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_6D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -324,7 +324,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_6D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_6D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -515,7 +515,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_6D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/7d.h
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_7D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -350,7 +350,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_7D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_7D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -561,7 +561,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_7D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/8d.h
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_8D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -376,7 +376,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_8D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_8D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -607,7 +607,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_8D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
4 changes: 2 additions & 2 deletions base/assign/include/stdlib/ndarray/base/assign/macros/9d.h
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_9D_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -402,7 +402,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_9D_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@
* @param tout output type
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., z_z
* STDLIB_NDARRAY_ASSIGN_9D_BLOCKED_LOOP_NOCAST( stdlib_complex128_t, stdlib_complex128_t )
Expand All @@ -653,7 +653,7 @@
* @param cout output casting function
*
* @example
* #include "stdlib/complex/float64.h"
* #include "stdlib/complex/float64/ctor.h"
*
* // e.g., d_z
* STDLIB_NDARRAY_ASSIGN_9D_BLOCKED_LOOP_CAST_FCN( double, stdlib_complex128_t, stdlib_complex128_from_float64 )
Expand Down
Loading

0 comments on commit 439f86f

Please sign in to comment.