-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
0e6fc7e
commit 4fb4f67
Showing
8 changed files
with
124 additions
and
22 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
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from ._runstats import RunningStats, Reduction | ||
from . import scatter | ||
|
||
__all__ = ["Reduction", "RunningStats"] | ||
__all__ = ["Reduction", "RunningStats", "scatter"] |
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,82 @@ | ||
"""basic scatter operations from torch_scatter | ||
Using code from https://github.com/rusty1s/pytorch_scatter, but cut down to avoid a dependency. | ||
""" | ||
|
||
from typing import Optional | ||
|
||
import torch | ||
|
||
|
||
def _broadcast(src: torch.Tensor, other: torch.Tensor, dim: int): | ||
if dim < 0: | ||
dim = other.dim() + dim | ||
if src.dim() == 1: | ||
for _ in range(0, dim): | ||
src = src.unsqueeze(0) | ||
for _ in range(src.dim(), other.dim()): | ||
src = src.unsqueeze(-1) | ||
src = src.expand_as(other) | ||
return src | ||
|
||
|
||
@torch.jit.script | ||
def scatter( | ||
src: torch.Tensor, | ||
index: torch.Tensor, | ||
dim: int = -1, | ||
out: Optional[torch.Tensor] = None, | ||
dim_size: Optional[int] = None, | ||
) -> torch.Tensor: | ||
index = _broadcast(index, src, dim) | ||
if out is None: | ||
size = list(src.size()) | ||
if dim_size is not None: | ||
size[dim] = dim_size | ||
elif index.numel() == 0: | ||
size[dim] = 0 | ||
else: | ||
size[dim] = int(index.max()) + 1 | ||
out = torch.zeros(size, dtype=src.dtype, device=src.device) | ||
return out.scatter_add_(dim, index, src) | ||
else: | ||
return out.scatter_add_(dim, index, src) | ||
|
||
|
||
@torch.jit.script | ||
def scatter_std( | ||
src: torch.Tensor, | ||
index: torch.Tensor, | ||
dim: int = -1, | ||
out: Optional[torch.Tensor] = None, | ||
dim_size: Optional[int] = None, | ||
unbiased: bool = True, | ||
) -> torch.Tensor: | ||
|
||
if out is not None: | ||
dim_size = out.size(dim) | ||
|
||
if dim < 0: | ||
dim = src.dim() + dim | ||
|
||
count_dim = dim | ||
if index.dim() <= dim: | ||
count_dim = index.dim() - 1 | ||
|
||
ones = torch.ones(index.size(), dtype=src.dtype, device=src.device) | ||
count = scatter(ones, index, count_dim, dim_size=dim_size) | ||
|
||
index = _broadcast(index, src, dim) | ||
tmp = scatter(src, index, dim, dim_size=dim_size) | ||
count = _broadcast(count, tmp, dim).clamp(1) | ||
mean = tmp.div(count) | ||
|
||
var = src - mean.gather(dim, index) | ||
var = var * var | ||
out = scatter(var, index, dim, out, dim_size) | ||
|
||
if unbiased: | ||
count = count.sub(1).clamp_(1) | ||
out = out.div(count + 1e-6).sqrt() | ||
|
||
return out |