@@ -139,32 +139,32 @@ More examples
139139--------------
140140
141141More complex examples (but still fairly simple) are available in the `examples
142- <https://github.com/pypr/compyle/tree/master /examples> `_ directory.
142+ <https://github.com/pypr/compyle/tree/main /examples> `_ directory.
143143
144- - `axpb.py <https://github.com/pypr/compyle/tree/master /examples/axpb.py >`_: the
144+ - `axpb.py <https://github.com/pypr/compyle/tree/main /examples/axpb.py >`_: the
145145 above example but for openmp and opencl compared with serial showing that in
146146 some cases serial is actually faster than parallel!
147147
148148- `vm_elementwise.py
149- <https://github.com/pypr/compyle/tree/master /examples/vm_elementwise.py> `_:
149+ <https://github.com/pypr/compyle/tree/main /examples/vm_elementwise.py> `_:
150150 shows a simple N-body code with two-dimensional point vortices. The code uses
151151 a simple elementwise operation and works with OpenMP and OpenCL.
152152
153153- `vm_numba.py
154- <https://github.com/pypr/compyle/tree/master /examples/vm_numba.py> `_: shows
154+ <https://github.com/pypr/compyle/tree/main /examples/vm_numba.py> `_: shows
155155 the same code written in numba for comparison. In our benchmarks, Compyle is
156156 actually faster even in serial and in parallel it can be much faster when you
157157 use all cores.
158158
159159- `vm_kernel.py
160- <https://github.com/pypr/compyle/tree/master /examples/vm_kernel.py> `_: shows
160+ <https://github.com/pypr/compyle/tree/main /examples/vm_kernel.py> `_: shows
161161 how one can write a low-level OpenCL kernel in pure Python and use that. This
162162 also shows how you can allocate and use local (or shared) memory which is
163163 often very important for performance on GPGPUs. This code will only run via
164164 PyOpenCL.
165165
166166- `bench_vm.py
167- <https://github.com/pypr/compyle/tree/master /examples/bench_vm.py> `_:
167+ <https://github.com/pypr/compyle/tree/main /examples/bench_vm.py> `_:
168168 Benchmarks the various vortex method results above for a comparison with
169169 numba.
170170
0 commit comments