Skip to content

Commit 13db75f

Browse files
authored
Change references to pytorch-labs to pytorch (#430)
1 parent f4d6efe commit 13db75f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ To force autotuning, bypassing provided configurations, set `HELION_FORCE_AUTOTU
279279
force=True)`.
280280

281281
Additional settings are available in
282-
[settings.py](https://github.com/pytorch-labs/helion/blob/main/helion/runtime/settings.py). If both an environment
282+
[settings.py](https://github.com/pytorch/helion/blob/main/helion/runtime/settings.py). If both an environment
283283
variable and a kernel decorator argument are set, the kernel decorator argument takes precedence, and the environment
284284
variable will be ignored.
285285

@@ -311,12 +311,12 @@ install compatible versions of [PyTorch] and [Triton].
311311
Once your environment is set up, you can install Helion directly from GitHub:
312312

313313
```bash
314-
pip install git+https://github.com/pytorch-labs/helion.git
314+
pip install git+https://github.com/pytorch/helion.git
315315
```
316316

317317
Alternatively, you may install from source for development purposes:
318318
```bash
319-
git clone https://github.com/pytorch-labs/helion.git
319+
git clone https://github.com/pytorch/helion.git
320320
cd helion
321321
# To install in editable w/ required dev packages
322322
pip install -e .'[dev]'

docs/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Helion currently targets Linux systems and requires a recent Python and PyTorch
2525
The easiest way to install Helion is directly from GitHub:
2626

2727
```bash
28-
pip install git+https://github.com/pytorch-labs/helion.git
28+
pip install git+https://github.com/pytorch/helion.git
2929
```
3030

3131
We also publish [PyPI releases](https://pypi.org/project/helion/), but the GitHub version is recommended for the latest features and fixes.
@@ -36,7 +36,7 @@ For development purposes or if you want to modify Helion:
3636

3737
```bash
3838
# Clone the repository
39-
git clone https://github.com/pytorch-labs/helion.git
39+
git clone https://github.com/pytorch/helion.git
4040
cd helion
4141

4242
# Install in editable mode with development dependencies
@@ -89,10 +89,10 @@ Choose one of the installation methods above:
8989

9090
```bash
9191
# Option A: From GitHub
92-
pip install git+https://github.com/pytorch-labs/helion.git
92+
pip install git+https://github.com/pytorch/helion.git
9393

9494
# Option B: Development installation
95-
git clone https://github.com/pytorch-labs/helion.git
95+
git clone https://github.com/pytorch/helion.git
9696
cd helion
9797
pip install -e '.[dev]'
9898
```
@@ -156,4 +156,4 @@ Matches the requirements of [Triton](https://github.com/triton-lang/triton). At
156156
Once installation is complete:
157157

158158
1. **Check out the {doc}`api/index` for complete API documentation**
159-
2. **Explore the [examples/](https://github.com/pytorch-labs/helion/tree/main/examples) folder for real-world patterns**
159+
2. **Explore the [examples/](https://github.com/pytorch/helion/tree/main/examples) folder for real-world patterns**

examples/segment_reduction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
This example demonstrates how to implement a segmented reduction operation using Helion,
66
comparing it with Triton and PyTorch implementations.
7-
Code based on https://github.com/pytorch-labs/helion/issues/237
7+
Code based on https://github.com/pytorch/helion/issues/237
88
"""
99

1010
# %%

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ docs = [
3939
]
4040

4141
[project.urls]
42-
Homepage = "https://github.com/pytorch-labs/helion"
43-
Issues = "https://github.com/pytorch-labs/helion/issues"
42+
Homepage = "https://github.com/pytorch/helion"
43+
Issues = "https://github.com/pytorch/helion/issues"
4444

4545
[tool.ruff]
4646
target-version = "py310"

0 commit comments

Comments
 (0)