-
Notifications
You must be signed in to change notification settings - Fork 180
Add cluster
to LaunchConfig
to support thread block clusters on Hopper
#261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
5d253f1
add support for cluster
leofang 4abe520
add a code sample; apply a WAR to a potential bug
leofang 7f58ae4
Merge branch 'main' into cluster
leofang 895c9fa
more robust treatments
leofang a003b98
add release note entries
leofang 20692de
fix invalid context during test teardown
leofang 5ac409b
improve comments in the code sample
leofang 37c2843
Merge branch 'main' into cluster
leofang 6c35033
Merge branch 'main' into cluster
leofang 7d117f2
Merge branch 'main' into cluster
leofang 2c3a619
Merge branch 'main' into cluster
leofang b8004e9
switch from chip chen to compute capability in comments
ksimpson-work 4b95ba4
Merge remote-tracking branch 'leofang/cluster' into HEAD
ksimpson-work File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED. | ||
# | ||
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE | ||
|
||
import os | ||
import sys | ||
|
||
from cuda.core.experimental import Device, LaunchConfig, Program, launch | ||
|
||
# prepare include | ||
cuda_path = os.environ.get("CUDA_PATH", os.environ.get("CUDA_HOME")) | ||
if cuda_path is None: | ||
print("this demo requires a valid CUDA_PATH environment variable set", file=sys.stderr) | ||
sys.exit(0) | ||
cuda_include_path = os.path.join(cuda_path, "include") | ||
|
||
# print cluster info using a kernel | ||
code = r""" | ||
#include <cooperative_groups.h> | ||
|
||
namespace cg = cooperative_groups; | ||
|
||
extern "C" | ||
__global__ void check_cluster_info() { | ||
auto g = cg::this_grid(); | ||
auto b = cg::this_thread_block(); | ||
if (g.cluster_rank() == 0 && g.block_rank() == 0 && g.thread_rank() == 0) { | ||
printf("grid dim: (%u, %u, %u)\n", g.dim_blocks().x, g.dim_blocks().y, g.dim_blocks().z); | ||
printf("cluster dim: (%u, %u, %u)\n", g.dim_clusters().x, g.dim_clusters().y, g.dim_clusters().z); | ||
printf("block dim: (%u, %u, %u)\n", b.dim_threads().x, b.dim_threads().y, b.dim_threads().z); | ||
} | ||
} | ||
""" | ||
|
||
dev = Device() | ||
dev.set_current() | ||
arch = dev.compute_capability | ||
if arch < (9, 0): | ||
print("this demo requires a Hopper GPU (since thread block cluster is a hardware feature)", file=sys.stderr) | ||
leofang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
sys.exit(0) | ||
arch = "".join(f"{i}" for i in arch) | ||
|
||
# prepare program | ||
prog = Program(code, code_type="c++") | ||
mod = prog.compile( | ||
target_type="cubin", | ||
# TODO: update this after NVIDIA/cuda-python#237 is merged | ||
options=(f"-arch=sm_{arch}", "-std=c++17", f"-I{cuda_include_path}"), | ||
) | ||
|
||
# run in single precision | ||
ker = mod.get_kernel("check_cluster_info") | ||
|
||
# prepare launch config | ||
grid = 4 | ||
cluster = 2 | ||
block = 32 | ||
config = LaunchConfig(grid=grid, cluster=cluster, block=block, stream=dev.default_stream) | ||
|
||
# launch kernel on the default stream | ||
launch(ker, config) | ||
dev.sync() | ||
|
||
print("done!") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,59 @@ | ||
# Copyright 2024 NVIDIA Corporation. All rights reserved. | ||
# | ||
# Please refer to the NVIDIA end user license agreement (EULA) associated | ||
# with this source code for terms and conditions that govern your use of | ||
# this software. Any use, reproduction, disclosure, or distribution of | ||
# this software and related documentation outside the terms of the EULA | ||
# is strictly prohibited. | ||
|
||
import gc | ||
import os | ||
import sys | ||
|
||
import cupy as cp | ||
import pytest | ||
|
||
|
||
class SampleTestError(Exception): | ||
pass | ||
|
||
|
||
def parse_python_script(filepath): | ||
if not filepath.endswith(".py"): | ||
raise ValueError(f"{filepath} not supported") | ||
with open(filepath, encoding="utf-8") as f: | ||
script = f.read() | ||
return script | ||
|
||
|
||
def run_example(samples_path, filename, env=None): | ||
fullpath = os.path.join(samples_path, filename) | ||
script = parse_python_script(fullpath) | ||
try: | ||
old_argv = sys.argv | ||
sys.argv = [fullpath] | ||
old_sys_path = sys.path.copy() | ||
sys.path.append(samples_path) | ||
exec(script, env if env else {}) | ||
except ImportError as e: | ||
# for samples requiring any of optional dependencies | ||
for m in ("cupy",): | ||
if f"No module named '{m}'" in str(e): | ||
pytest.skip(f"{m} not installed, skipping related tests") | ||
break | ||
else: | ||
raise | ||
except Exception as e: | ||
msg = "\n" | ||
msg += f"Got error ({filename}):\n" | ||
msg += str(e) | ||
raise SampleTestError(msg) from e | ||
finally: | ||
sys.path = old_sys_path | ||
sys.argv = old_argv | ||
# further reduce the memory watermark | ||
gc.collect() | ||
cp.get_default_memory_pool().free_all_blocks() | ||
# Copyright 2024 NVIDIA Corporation. All rights reserved. | ||
# | ||
# Please refer to the NVIDIA end user license agreement (EULA) associated | ||
# with this source code for terms and conditions that govern your use of | ||
# this software. Any use, reproduction, disclosure, or distribution of | ||
# this software and related documentation outside the terms of the EULA | ||
# is strictly prohibited. | ||
|
||
import gc | ||
import os | ||
import sys | ||
|
||
import cupy as cp | ||
import pytest | ||
|
||
|
||
class SampleTestError(Exception): | ||
pass | ||
|
||
|
||
def parse_python_script(filepath): | ||
if not filepath.endswith(".py"): | ||
raise ValueError(f"{filepath} not supported") | ||
with open(filepath, encoding="utf-8") as f: | ||
script = f.read() | ||
return script | ||
|
||
|
||
def run_example(samples_path, filename, env=None): | ||
fullpath = os.path.join(samples_path, filename) | ||
script = parse_python_script(fullpath) | ||
try: | ||
old_argv = sys.argv | ||
sys.argv = [fullpath] | ||
old_sys_path = sys.path.copy() | ||
sys.path.append(samples_path) | ||
exec(script, env if env else {}) | ||
except ImportError as e: | ||
# for samples requiring any of optional dependencies | ||
for m in ("cupy",): | ||
if f"No module named '{m}'" in str(e): | ||
pytest.skip(f"{m} not installed, skipping related tests") | ||
break | ||
else: | ||
raise | ||
except SystemExit: | ||
# for samples that early return due to any missing requirements | ||
pytest.skip(f"skip {filename}") | ||
leofang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
except Exception as e: | ||
msg = "\n" | ||
msg += f"Got error ({filename}):\n" | ||
msg += str(e) | ||
raise SampleTestError(msg) from e | ||
finally: | ||
sys.path = old_sys_path | ||
sys.argv = old_argv | ||
# further reduce the memory watermark | ||
gc.collect() | ||
cp.get_default_memory_pool().free_all_blocks() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.