Skip to content

Commit ba9e8ea

Browse files
authored
Transform parallelism md to rst (#380)
1 parent 5601318 commit ba9e8ea

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spec/design_topics/parallelism.md renamed to spec/design_topics/parallelism.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Parallelism
1+
Parallelism
2+
===========
23

34
Parallelism is mostly, but not completely, an execution or runtime concern
45
rather than an API concern. Execution semantics are out of scope for this API
@@ -7,7 +8,7 @@ involves how libraries allow users to exercise control over the parallelism
78
they offer, such as:
89

910
- Via environment variables. This is the method of choice for BLAS libraries and libraries using OpenMP.
10-
- Via a keyword to individual functions or methods. Examples include the `n_jobs` keyword used in scikit-learn and the `workers` keyword used in SciPy.
11+
- Via a keyword to individual functions or methods. Examples include the ``n_jobs`` keyword used in scikit-learn and the ``workers`` keyword used in SciPy.
1112
- Build-time settings to enable a parallel or distributed backend.
1213
- Via letting the user set chunk sizes. Dask uses this approach.
1314

@@ -19,5 +20,5 @@ coordination of parallelization behavior in a stack of Python libraries are:
1920
2. A common library providing a parallelization layer
2021

2122
Option (1) may possibly fit in a future version of this array API standard.
22-
[array-api issue 4](https://github.com/data-apis/array-api/issues/4) contains
23+
`array-api issue 4 <https://github.com/data-apis/array-api/issues/4>`_ contains
2324
more detailed discussion on the topic of parallelism.

0 commit comments

Comments
 (0)