[examples] update autoparallel tutorial demo (#2449)

* [examples] update autoparallel tutorial demo

* add test_ci.sh

* polish

* add conda yaml
This commit is contained in:
YuliangLiu0306
2023-01-12 14:30:58 +08:00
committed by GitHub
parent 9358262992
commit c20529fe78
4 changed files with 72 additions and 116 deletions

View File

@@ -0,0 +1,13 @@
from setuptools import find_packages, setup
setup(
name='auto_parallel',
version='0.0.1',
description='',
packages=find_packages(),
install_requires=[
'torch',
'numpy',
'tqdm',
],
)