mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-09-05 11:02:05 +00:00
[misc] update pre-commit and run all files (#4752)
* [misc] update pre-commit * [misc] run pre-commit * [misc] remove useless configuration files * [misc] ignore cuda for clang-format
This commit is contained in:
@@ -3,14 +3,16 @@ import os
|
||||
from setuptools import Extension, setup
|
||||
|
||||
this_dir = os.path.dirname(os.path.abspath(__file__))
|
||||
ext_modules = [Extension(
|
||||
'rotorc',
|
||||
sources=[os.path.join(this_dir, 'ckpt_solver_rotor.c')],
|
||||
)]
|
||||
ext_modules = [
|
||||
Extension(
|
||||
"rotorc",
|
||||
sources=[os.path.join(this_dir, "ckpt_solver_rotor.c")],
|
||||
)
|
||||
]
|
||||
|
||||
setup(
|
||||
name='rotor c extension',
|
||||
version='0.1',
|
||||
description='rotor c extension for faster dp computing',
|
||||
name="rotor c extension",
|
||||
version="0.1",
|
||||
description="rotor c extension for faster dp computing",
|
||||
ext_modules=ext_modules,
|
||||
)
|
||||
|
Reference in New Issue
Block a user