-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
275 additions
and
44 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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,79 @@ | ||
import logging | ||
|
||
import torch | ||
import triton | ||
import triton.language as tl | ||
|
||
from ..utils import libentry | ||
|
||
|
||
@libentry() | ||
@triton.autotune( | ||
configs=[ | ||
triton.Config({"BLOCK_SIZE": k}, num_warps=w, num_stages=4) | ||
for w in [4, 8, 16, 32] | ||
for k in [256, 512, 1024, 2048, 4096, 8192] | ||
], | ||
key=[ | ||
"n_elements", | ||
], | ||
) | ||
@triton.jit | ||
def nonzero_kernel( | ||
inp, | ||
prefix_sum, | ||
out, | ||
n_elements, | ||
shape, | ||
ndim: tl.constexpr, | ||
BLOCK_SIZE: tl.constexpr, | ||
): | ||
pid = tl.program_id(0) | ||
|
||
offset = pid * BLOCK_SIZE + tl.arange(0, BLOCK_SIZE) | ||
mask = offset < n_elements | ||
|
||
inp_vals = tl.load(inp + offset, mask=mask) | ||
out_offset = tl.load(prefix_sum + offset, mask=mask) - 1 | ||
|
||
nonzero_mask = mask and inp_vals == True # noqa | ||
|
||
idx_flat = offset | ||
for dim in range(ndim - 1, -1, -1): | ||
dim_size = tl.load(shape + dim) | ||
remainder = idx_flat % dim_size | ||
idx_flat //= dim_size | ||
tl.store(out + out_offset * ndim + dim, remainder, mask=nonzero_mask) | ||
|
||
|
||
def nonzero(inp, *, as_tuple=False): | ||
logging.debug("GEMS NONZERO") | ||
|
||
inp_ndim = inp.ndim | ||
|
||
inp = inp.contiguous() | ||
n_elements = inp.numel() | ||
inp_view = inp.view(n_elements) | ||
|
||
shape = torch.tensor(inp.shape, dtype=torch.int32, device=inp.device) | ||
|
||
inp_bool = inp_view | ||
if inp_view.dtype != torch.bool: | ||
inp_bool = inp_view != 0 | ||
|
||
prefix_sum = inp_bool.cumsum(axis=0) | ||
|
||
num_nonzeros = n_elements | ||
out = torch.empty(num_nonzeros, inp_ndim, dtype=torch.int64, device=inp.device) | ||
|
||
grid = lambda meta: (triton.cdiv(n_elements, meta["BLOCK_SIZE"]),) | ||
with torch.cuda.device(inp.device): | ||
nonzero_kernel[grid](inp_bool, prefix_sum, out, n_elements, shape, inp_ndim) | ||
|
||
num_nonzeros = prefix_sum[n_elements - 1].item() | ||
out = out[0:num_nonzeros] | ||
|
||
if as_tuple: | ||
return torch.unbind(out, dim=0) | ||
else: | ||
return out |
This file contains 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 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