You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/09/16 12:24:51 UTC

[dolphinscheduler] branch dev updated (864a90820d -> 5202e5cfc6)

This is an automated email from the ASF dual-hosted git repository.

zhongjiajie pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


    from 864a90820d Fix insertOrUpdate plugin may failed due to concurrent operation (#11471)
     add 5202e5cfc6 [feat][python] Support Pytorch task in python api (#11975)

No new revisions were added by this update.

Summary of changes:
 .../pydolphinscheduler/docs/source/tasks/index.rst |   1 +
 .../docs/source/tasks/{switch.rst => pytorch.rst}  |  14 +--
 .../examples/yaml_define/Pytorch.yaml              |  53 +++++++++
 .../src/pydolphinscheduler/constants.py            |   1 +
 .../examples/task_pytorch_example.py               |  62 +++++++++++
 .../src/pydolphinscheduler/tasks/__init__.py       |   2 +
 .../src/pydolphinscheduler/tasks/pytorch.py        |  95 ++++++++++++++++
 .../pydolphinscheduler/tests/tasks/test_pytorch.py | 124 +++++++++++++++++++++
 8 files changed, 345 insertions(+), 7 deletions(-)
 copy dolphinscheduler-python/pydolphinscheduler/docs/source/tasks/{switch.rst => pytorch.rst} (82%)
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/examples/yaml_define/Pytorch.yaml
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/examples/task_pytorch_example.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/pytorch.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_pytorch.py