Skip to content

Commit

Permalink
fix: remove the unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaysukh-409 committed Oct 4, 2024
1 parent 4e40c79 commit 4d0ae78
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
struct ndarray *x2 = arrays[ 1 ]; \
struct ndarray *x3 = arrays[ 2 ]; \
int64_t *shx1 = stdlib_ndarray_shape( x1 ); \
int64_t *shx3 = stdlib_ndarray_shape( x3 ); \
int64_t *sx1 = stdlib_ndarray_strides( x1 ); \
int64_t *sx2 = stdlib_ndarray_strides( x2 ); \
int64_t *sx3 = stdlib_ndarray_strides( x3 ); \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
struct ndarray *x2 = arrays[ 1 ]; \
struct ndarray *x3 = arrays[ 2 ]; \
int64_t *shx1 = stdlib_ndarray_shape( x1 ); \
int64_t *shx3 = stdlib_ndarray_shape( x3 ); \
int64_t *sx1 = stdlib_ndarray_strides( x1 ); \
int64_t *sx2 = stdlib_ndarray_strides( x2 ); \
int64_t *sx3 = stdlib_ndarray_strides( x3 ); \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
int64_t bsize; \
uint8_t *pbx1; \
uint8_t *pbx2; \
uint8_t *pbx3; \
uint8_t *px1; \
uint8_t *px2; \
uint8_t *px3; \
Expand Down Expand Up @@ -103,7 +102,6 @@
/* Cache pointers to the ndarray buffers... */ \
pbx1 = stdlib_ndarray_data( x1 ); \
pbx2 = stdlib_ndarray_data( x2 ); \
pbx3 = stdlib_ndarray_data( x3 ); \
/* Cache byte offsets to the first indexed elements... */ \
ox1 = stdlib_ndarray_offset( x1 ); \
ox2 = stdlib_ndarray_offset( x2 ); \
Expand Down

0 comments on commit 4d0ae78

Please sign in to comment.