From 77efdfe1ddf9cd9d680137d1fb6910daf78dc4e8 Mon Sep 17 00:00:00 2001 From: digger-yu Date: Thu, 13 Apr 2023 17:11:55 +0800 Subject: [PATCH] [doc] Update README.md (#3549) Format Optimization ,Add [] outside of DeepSpeed --- op_builder/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op_builder/README.md b/op_builder/README.md index 1f88b4dfd..0f646a186 100644 --- a/op_builder/README.md +++ b/op_builder/README.md @@ -15,7 +15,7 @@ Method 2 is good because it allows the user to only build the kernel they actual ## PyTorch Extensions in Colossal-AI -The project DeepSpeed (https://github.com/microsoft/DeepSpeed) has proposed a [solution](https://github.com/microsoft/DeepSpeed/tree/master/op_builder) to support kernel-build during either installation or runtime. +The project [DeepSpeed](https://github.com/microsoft/DeepSpeed) has proposed a [solution](https://github.com/microsoft/DeepSpeed/tree/master/op_builder) to support kernel-build during either installation or runtime. We have adapted from DeepSpeed's solution to build extensions. The extension build requries two main functions from PyTorch: 1. `torch.utils.cpp_extension.CUDAExtension`: used to build extensions in `setup.py` during `pip install`.