Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The following diagram illustrates the architecture of the **StepMesh** communica

- Ubuntu OS
- Servers with RDMA NICs and GPU cards.
- PyTorch
- torch >= 2.0.0
- CUDA NVCC or other compilers

## Build
Expand All @@ -63,13 +63,13 @@ bash tools/install_deps.sh # only once

Build StepMesh
```bash
# Please check that your CUDA_HOME is correct
# Please check that your CUDA_HOME is correct and torch is installed.

# Build AF library
make af

# Build and install Fserver (AF's Python SDK)
pip3 install -v -e .
pip3 install -v -e . --no-build-isolation
```

Build without cuda
Expand All @@ -80,7 +80,7 @@ Build without cuda
USE_CUDA=0 make af

# Build and install Fserver (AF's Python SDK)
USE_CUDA=0 pip3 install -v -e .
USE_CUDA=0 pip3 install -v -e . --no-build-isolation

```

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[build-system]
requires = [
"setuptools>=40.8.0",
"wheel",
"torch>=2.0.0"
"wheel"
]
build-backend = "setuptools.build_meta"