You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/development.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ Assuming the requisite language is present on the host machine, the following la
41
41
-[pydocstyle][pydocstyle]: Python docstring checker against PEP 257 (version `>= 2.0.0`)
42
42
-[lintr][lintr]: static code analysis for R (version `>= 1.0.0`)
43
43
44
-
The following vendor libraries can be automatically downloaded and compiled from source using `make` (see [installation](#installation)):
44
+
The following external libraries can be automatically downloaded and compiled from source using `make` (see [installation](#installation)):
45
45
46
46
-[Boost][boost]: portable C++ libraries
47
47
-[Cephes][cephes]: C/C++ special functions math library
@@ -119,13 +119,13 @@ $ echo $NODE_PATH
119
119
120
120
## Installation
121
121
122
-
To install vendor dependencies (**optional**),
122
+
To install external libraries (**optional**),
123
123
124
124
```bash
125
125
$ make install-deps
126
126
```
127
127
128
-
While vendor dependencies are not always required, installing these dependencies may aid development and unlock performance benefits, especially when developing numeric computation facilities. Note, however, that installing vendor dependencies may take considerable time (>30 minutes).
128
+
While external library dependencies are not always required, installing these dependencies may aid development and unlock performance benefits, especially when developing numeric computation facilities. Note, however, that installing external library dependencies may take considerable time (>30 minutes).
129
129
130
130
To install language dependencies (**optional**),
131
131
@@ -190,7 +190,7 @@ The stdlib source code is organized as follows:
Copy file name to clipboardexpand all lines: docs/gfortran.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ The command options are as follows:
58
58
Other possible options include:
59
59
60
60
-`-Wconversion-extra`: warn if source code contains implicit conversion between different types and kinds. Does not imply `-Wconversion`.
61
-
-`-fexternal-blas`: generate calls to BLAS functions for some matrix operations, e.g., `MATMUL`, instead of using internal `gfortran` algorithms, if the size of the matrices involved is larger than a given limit (see `-fblas-matmul-limit`). This may be useful if an optimized vendor BLAS library is available. The BLAS library must be specified at link time.
61
+
-`-fexternal-blas`: generate calls to BLAS functions for some matrix operations, e.g., `MATMUL`, instead of using internal `gfortran` algorithms, if the size of the matrices involved is larger than a given limit (see `-fblas-matmul-limit`). This may be useful if an optimized BLAS library is available. The BLAS library must be specified at link time.
62
62
-`-fno-underscoring`: do not transform names of entities specified in Fortran source files by appending underscores. Be careful when using this option, as user-defined names may conflict with a name in a system library.
63
63
-`-fcheck=bounds`: enable generation of run-time checks for array subscripts and against the declared minimum and maximum values. Also, check array indices for assumed and deferred shape arrays against the actual allocated bounds and ensure that all string lengths are equal for character array constructors without an explicit typespec. Note that generated checks may have a performance cost.
Copy file name to clipboardexpand all lines: tools/make/lib/deps/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
# deps
2
2
3
-
> Vendor dependency recipes.
3
+
> External library recipes.
4
4
5
5
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
6
6
7
7
<sectionclass="intro">
8
8
9
-
This directory contains [`make`][make] recipes for installing, removing, and managing the project's vendor dependencies.
9
+
This directory contains [`make`][make] recipes for installing, removing, and managing the project's external library dependencies.
0 commit comments