Commit e5d20fee authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

updated doc

parent 5336187e
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -28,3 +28,15 @@ The timeline is splitted into cycles, and each cycle spans 6 months.
- C6 (2022.7-2022.12)
    - integrate L1 pipelines
- C5 (2022.1-2022.6)

Weekly meeting
--------------

- 2022-08-26 (Fri)
- 2022-09-02 (Fri)
- 2022-09-09 (Fri)
- 2022-09-16 (Fri)
- 2022-09-23 (Fri)
- 2022-09-30 (Fri)
- 2022-10-14 (Fri)
- 2022-10-21 (Fri)
+0 −0

File moved.

+2 −2
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ The two packages are preferred for implementing `embarrassingly` parallel comput
- ``multiprocessing``: https://docs.python.org/3/library/multiprocessing.html
- ``joblib``: https://joblib.readthedocs.io/en/latest/

.. literalinclude:: ./example_multiprocessing.py
.. literalinclude:: preference/example_multiprocessing.py
    :linenos:
    :language: python
    :caption: an example of using ``multiprocessing`` for parallel computing
@@ -40,7 +40,7 @@ The output is

    Total time cost: 5.095193147659302 sec!

.. literalinclude:: ./example_joblib.py
.. literalinclude:: preference/example_joblib.py
    :linenos:
    :language: python
    :caption: an example of using ``joblib`` for parallel computing
Loading