Commit b73cc994 authored by quyuanhao123's avatar quyuanhao123
Browse files

Initial commit

parents
Pipeline #193 failed with stages
in 0 seconds
import torch
@torch.jit.script
def spline_weighting(x: torch.Tensor, weight: torch.Tensor,
basis: torch.Tensor,
weight_index: torch.Tensor) -> torch.Tensor:
return torch.ops.torch_spline_conv.spline_weighting(
x, weight, basis, weight_index)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment