Skip to content

Commit c318d95

Browse files
committed
Auto-generated commit
1 parent 33ae065 commit c318d95

File tree

3 files changed

+31
-12
lines changed

3 files changed

+31
-12
lines changed

.gitattributes

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,27 @@
4040
*.mov binary
4141

4242
# Override what is considered "vendored" by GitHub's linguist:
43-
/deps/** linguist-vendored=false
44-
/lib/node_modules/** linguist-vendored=false linguist-generated=false
45-
test/fixtures/** linguist-vendored=false
46-
tools/** linguist-vendored=false
43+
/lib/node_modules/** -linguist-vendored -linguist-generated
4744

48-
# Override what is considered "documentation" by GitHub's linguist:
49-
examples/** linguist-documentation=false
45+
# Configure directories which should *not* be included in GitHub language statistics:
46+
/deps/** linguist-vendored
47+
/dist/** linguist-generated
48+
/workshops/** linguist-vendored
49+
50+
benchmark/** linguist-vendored
51+
docs/* linguist-documentation
52+
etc/** linguist-vendored
53+
examples/** linguist-documentation
54+
scripts/** linguist-vendored
55+
test/** linguist-vendored
56+
tools/** linguist-vendored
57+
58+
# Configure files which should *not* be included in GitHub language statistics:
59+
Makefile linguist-vendored
60+
*.mk linguist-vendored
61+
*.jl linguist-vendored
62+
*.py linguist-vendored
63+
*.R linguist-vendored
64+
65+
# Configure files which should be included in GitHub language statistics:
66+
docs/types/*.d.ts -linguist-documentation

CONTRIBUTORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Adarsh Palaskar <adarshpalaskar99@gmail.com>
66
Aditya Sapra <adityaework@gmail.com>
77
AgPriyanshu18 <113460573+AgPriyanshu18@users.noreply.github.com>
8+
Aleksandr <112382387+alextes90@users.noreply.github.com>
89
Ali Salesi <ali_sal1381@yahoo.com>
910
Aman Bhansali <bhansali.1@iitj.ac.in>
1011
Amit Jimiwal <amitjimiwal45@gmail.com>
@@ -18,6 +19,7 @@ Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
1819
Christopher Dambamuromo <chridam@gmail.com>
1920
Dan Rose <danoftheroses@gmail.com>
2021
Daniel Killenberger <daniel.killenberger@gmail.com>
22+
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
2123
Dominik Moritz <domoritz@gmail.com>
2224
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
2325
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
@@ -69,8 +71,10 @@ Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
6971
Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
7072
Shivam <11shivam00@gmail.com>
7173
Shraddheya Shendre <shendreshraddheya@gmail.com>
74+
Shubh Mehta <93862397+Shubh942@users.noreply.github.com>
7275
Shubham Mishra <shubh622005@gmail.com>
7376
Snehil Shah <130062020+Snehil-Shah@users.noreply.github.com>
77+
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
7478
Spandan Barve <contact@marsian.dev>
7579
Stephannie Jiménez Gacha <steff456@hotmail.com>
7680
Suraj kumar <125961509+kumarsuraj212003@users.noreply.github.com>
@@ -83,4 +87,5 @@ Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
8387
naveen <stupiddint@gmail.com>
8488
nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
8589
orimiles5 <97595296+orimiles5@users.noreply.github.com>
90+
rainn <88160429+AmCodesLame@users.noreply.github.com>
8691
rei2hu <reimu@reimu.ws>

benchmark/c/benchmark.length.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
/**
20-
* Benchmark `dsnansumors`.
21-
*/
2219
#include "stdlib/blas/ext/base/dsnansumors.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>
@@ -35,7 +32,7 @@
3532
/**
3633
* Prints the TAP version.
3734
*/
38-
void print_version() {
35+
void print_version( void ) {
3936
printf( "TAP version 13\n" );
4037
}
4138

@@ -74,7 +71,7 @@ void print_results( int iterations, double elapsed ) {
7471
*
7572
* @return clock time
7673
*/
77-
double tic() {
74+
double tic( void ) {
7875
struct timeval now;
7976
gettimeofday( &now, NULL );
8077
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
@@ -85,7 +82,7 @@ double tic() {
8582
*
8683
* @return random number
8784
*/
88-
float rand_float() {
85+
float rand_float( void ) {
8986
int r = rand();
9087
return (float)r / ( (float)RAND_MAX + 1.0f );
9188
}

0 commit comments

Comments
 (0)