Making large AI models cheaper, faster and more accessible
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
digger yu 5e1c93d732
[hotfix] fix typo change MoECheckpintIO to MoECheckpointIO (#5335)
9 months ago
..
README.md [accelerator] init the accelerator module (#5129) 12 months ago
__init__.py [npu] change device to accelerator api (#5239) 11 months ago
api.py [hotfix] fix typo change MoECheckpintIO to MoECheckpointIO (#5335) 9 months ago
base_accelerator.py [feat] refactored extension module (#5298) 10 months ago
cpu_accelerator.py [feat] refactored extension module (#5298) 10 months ago
cuda_accelerator.py [feat] refactored extension module (#5298) 10 months ago
npu_accelerator.py [accelerator] fixed npu api 10 months ago

README.md

🚀 Accelerator

🔗 Table of Contents

📚 Introduction

This module offers a layer of abstraction for ColossalAI. With this module, the user can easily switch between different accelerator backends, such as Nvidia GPUs, Huawei NPUs, etc. This module is an attempt to make users' code portable across different hardware platform with a simple auto_set_accelerator() API.

📌 Design and Acknowledgement

Our accelerator module is heavily inspired by deepspeed/accelerator. We found that it is a very well-designed and well-structured module that can be easily integrated into our project. We would like to thank the DeepSpeed team for their great work.

We implemented this accelerator module from scratch. At the same time, we have implemented our own modifications:

  1. we updated the accelerator API names to be aligned with PyTorch's native API names.
  2. we did not include the op builder in the accelerator. Instead, we have reconstructed our kernel module to automatically match the accelerator and its corresponding kernel implementations, so as to make modules less tangled.