Skip to content

Commit 4760592

Browse files
committed
Merge branch 'develop' into feat/sinpif
2 parents 279c27d + cf8cf0a commit 4760592

File tree

348 files changed

+8433
-959
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

348 files changed

+8433
-959
lines changed

.github/workflows/run_affected_benchmarks.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ jobs:
5050

5151
# Define a job for running changed benchmarks...
5252
process:
53-
5453
# Define a display name:
5554
name: 'Run affected benchmarks'
5655

56+
# Only run this job if a pull request does not have a "ci: Skip" label:
57+
if: "${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci: Skip') }}"
58+
5759
# Define the type of virtual host machine:
5860
runs-on: ubuntu-latest
5961

.github/workflows/run_affected_examples.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
# Define a display name:
5252
name: 'Run changed examples'
5353

54+
# Only run this job if a pull request does not have a "ci: Skip" label:
55+
if: "${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci: Skip') }}"
56+
5457
# Define the type of virtual host machine:
5558
runs-on: ubuntu-latest
5659

.github/workflows/run_affected_tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ jobs:
8686
# Define a display name:
8787
name: 'Run affected tests'
8888

89+
# Only run this job if a pull request does not have a "ci: Skip" label:
90+
if: "${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci: Skip') }}"
91+
8992
# Define the type of virtual host machine:
9093
runs-on: ubuntu-latest
9194

.github/workflows/run_tests_coverage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ jobs:
8686
# Define a display name:
8787
name: 'Calculate test coverage for packages'
8888

89+
# Only run this job if a pull request does not have a "ci: Skip" label:
90+
if: "${{ github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'ci: Skip') }}"
91+
8992
# Define the type of virtual host machine:
9093
runs-on: ubuntu-latest
9194

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ Sai Avinash <[email protected]>
167167
Sai Srikar Dumpeti <[email protected]>
168168
Sanchay Ketan Sinha <[email protected]>
169169
Sarthak Paandey <[email protected]>
170+
Satyajeet Chavan <[email protected]>
170171
Saurabh Singh <[email protected]>
171172
Seyyed Parsa Neshaei <[email protected]>
172173
Shabareesh Shetty <[email protected]>

lib/node_modules/@stdlib/blas/base/caxpy/include/stdlib/blas/base/caxpy.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the BLAS Level 1 routine `caxpy`.
2121
*/
22-
#ifndef CAXPY_H
23-
#define CAXPY_H
22+
#ifndef STDLIB_BLAS_BASE_CAXPY_H
23+
#define STDLIB_BLAS_BASE_CAXPY_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626
#include "stdlib/complex/float32/ctor.h"
@@ -46,4 +46,4 @@ void API_SUFFIX(c_caxpy_ndarray)( const CBLAS_INT N, const stdlib_complex64_t al
4646
}
4747
#endif
4848

49-
#endif // !CAXPY_H
49+
#endif // !STDLIB_BLAS_BASE_CAXPY_H

lib/node_modules/@stdlib/blas/base/caxpy/include/stdlib/blas/base/caxpy_cblas.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_ccopy`.
2121
*/
22-
#ifndef CAXPY_CBLAS_H
23-
#define CAXPY_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_CAXPY_CBLAS_H
23+
#define STDLIB_BLAS_BASE_CAXPY_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626
#include "stdlib/complex/float32/ctor.h"
@@ -41,4 +41,4 @@ void API_SUFFIX(cblas_caxpy)( const CBLAS_INT N, const stdlib_complex64_t alpha,
4141
}
4242
#endif
4343

44-
#endif // !CAXPY_CBLAS_H
44+
#endif // !STDLIB_BLAS_BASE_CAXPY_CBLAS_H

lib/node_modules/@stdlib/blas/base/ccopy/include/stdlib/blas/base/ccopy.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the BLAS Level 1 routine `ccopy`.
2121
*/
22-
#ifndef CCOPY_H
23-
#define CCOPY_H
22+
#ifndef STDLIB_BLAS_BASE_CCOPY_H
23+
#define STDLIB_BLAS_BASE_CCOPY_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626

@@ -45,4 +45,4 @@ void API_SUFFIX(c_ccopy_ndarray)( const CBLAS_INT N, const void *X, const CBLAS_
4545
}
4646
#endif
4747

48-
#endif // !CCOPY_H
48+
#endif // !STDLIB_BLAS_BASE_CCOPY_H

lib/node_modules/@stdlib/blas/base/ccopy/include/stdlib/blas/base/ccopy_cblas.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_ccopy`.
2121
*/
22-
#ifndef CCOPY_CBLAS_H
23-
#define CCOPY_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_CCOPY_CBLAS_H
23+
#define STDLIB_BLAS_BASE_CCOPY_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626

@@ -40,4 +40,4 @@ void API_SUFFIX(cblas_ccopy)( const CBLAS_INT N, const void *X, const CBLAS_INT
4040
}
4141
#endif
4242

43-
#endif // !CCOPY_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_CCOPY_CBLAS_H

lib/node_modules/@stdlib/blas/base/ccopy/include/stdlib/blas/base/ccopy_fortran.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Header file containing function declarations for the Fortran interface to the BLAS Level 1 routine `ccopy`.
2121
*/
22-
#ifndef CCOPY_FORTRAN_H
23-
#define CCOPY_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_CCOPY_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_CCOPY_FORTRAN_H
2424

2525
/*
2626
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C/Fortran compiler (a Fortran compiler must be configured to not attach underscores).
@@ -38,4 +38,4 @@ void ccopy( const CBLAS_INT *, const void *, const CBLAS_INT *, void *, const CB
3838
}
3939
#endif
4040

41-
#endif // !CCOPY_FORTRAN_H
41+
#endif // !STDLIB_BLAS_BASE_CCOPY_FORTRAN_H

0 commit comments

Comments
 (0)