mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-04-30 20:55:17 +00:00
* [examples] update autoparallel tutorial demo * add test_ci.sh * polish * add conda yaml
14 lines
231 B
Python
14 lines
231 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='auto_parallel',
|
|
version='0.0.1',
|
|
description='',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'torch',
|
|
'numpy',
|
|
'tqdm',
|
|
],
|
|
)
|