Skip to content

Commit 4e3a5c2

Browse files
committed
Auto-generated commit
1 parent e850d3e commit 4e3a5c2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,7 @@ A total of 46 issues were closed in this release:
494494

495495
<details>
496496

497+
- [`7f8b7d7`](https://github.com/stdlib-js/stdlib/commit/7f8b7d7c34b0fcfa3aa213b3e425dbdb08122049) - **bench:** define `NAME` macro for consistency with other benchmarks _(by Karan Anand)_
497498
- [`84cf373`](https://github.com/stdlib-js/stdlib/commit/84cf373b5eb74582d81aee0ae21cceba495f86bb) - **docs:** update header comment for consistency _(by Karan Anand)_
498499
- [`61efe84`](https://github.com/stdlib-js/stdlib/commit/61efe840e2afe996146a95025039d6b8829b23e2) - **test:** fix range typo and regenerate fixture _(by Karan Anand)_
499500
- [`38f6409`](https://github.com/stdlib-js/stdlib/commit/38f6409823eb10c6a4a6c3c94e7a6b60a5dd2088) - **feat:** add `math/base/special/kernel-tanf` [(#7263)](https://github.com/stdlib-js/stdlib/pull/7263) _(by Karan Anand, Philipp Burckhardt)_

base/special/tan/benchmark/c/benchmark.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <time.h>
2323
#include <sys/time.h>
2424

25+
#define NAME "tan"
2526
#define ITERATIONS 1000000
2627
#define REPEATS 3
2728

@@ -125,7 +126,7 @@ int main( void ) {
125126

126127
print_version();
127128
for ( i = 0; i < REPEATS; i++ ) {
128-
printf( "# c::%s\n", "tan" );
129+
printf( "# c::%s\n", NAME );
129130
elapsed = benchmark();
130131
print_results( elapsed );
131132
printf( "ok %d benchmark finished\n", i+1 );

0 commit comments

Comments
 (0)