Skip to content

Commit db3d9a9

Browse files
committed
Auto-generated commit
1 parent 89b859b commit db3d9a9

File tree

4 files changed

+25
-17
lines changed

4 files changed

+25
-17
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Chinmay Joshi <[email protected]>
1919
Christopher Dambamuromo <[email protected]>
2020
2121
Daniel Killenberger <[email protected]>
22+
Daniel Yu <[email protected]>
2223
Dominik Moritz <[email protected]>
2324
Dorrin Sotoudeh <[email protected]>
2425
EuniceSim142 <[email protected]>

benchmark/c/benchmark.length.c

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

19-
/**
20-
* Benchmark `ddot`.
21-
*/
2219
#include "stdlib/blas/base/ddot.h"
2320
#include <stdlib.h>
2421
#include <stdio.h>

benchmark/fortran/benchmark.length.f

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@
1616
! limitations under the License.
1717
!<
1818

19-
!> Benchmark `ddot`.
20-
!
21-
! ## Notes
22-
!
23-
! - Written in "free form" Fortran 95.
24-
!
25-
!<
2619
program bench
2720
implicit none
2821
! ..
@@ -215,4 +208,4 @@ subroutine main()
215208
end do
216209
call print_summary( count, count )
217210
end subroutine main
218-
end program bench
211+
end program bench

0 commit comments

Comments
 (0)