Skip to main content

A sparse tensor framework for Pytorch.

Project description

PyTorch Sparse Tensors

A small package that implements the basic sparse tensor of any dimension.

Key features

  • Torch-like API for sparse tensor of n-dimension
  • Support basic element-wise operations
  • Support reduction (mean and sum) over 1 or multiple dimensions
  • Support reshaping and broadcasting
  • Support concatenation over 1 or multiple dimensions

Installation

pip install torch-sparse-tensor

Demo

Import package

import torch
from sparse import SparseTensor

Build sparse tensors

a = SparseTensor(
    torch.tensor([[0, 3, 1, 1, 2, 2, 3], [0, 0, 1, 2, 1, 2, 3]], dtype=torch.long),
    torch.tensor([[1], [5], [1], [1], [1], [1], [1]], dtype=torch.float32),
    shape=(4, 4),
)
b = SparseTensor(
    torch.tensor([[0, 1, 1, 2, 3], [0, 1, 2, 2, 3]], dtype=torch.long),
    torch.tensor([[1], [2], [1], [1], [1]], dtype=torch.float32),
    shape=(4, 4),
)

To cuda device

a = a.to("cuda")
b = b.to("cuda")

Conversion to dense representation

print(a.to_dense())
print(b.to_dense())

Basic element-wise operations

c=a+b
print(c.to_dense())

d=a*b
print(d.to_dense())

Reduction operations

print(a.sum(0).to_dense())
print(a.mean(0).to_dense())

Indexing and broadcasting

print((a[:, None, :] + a[:, :, None]).sum(0).to_dense())

Concatenation over several dimensions

print(SparseTensor.cat((a, b), dim=1).to_dense())
print(SparseTensor.cat((a, b), dim=(0,1)).to_dense())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torch_sparse_tensor-0.2.0.tar.gz (9.6 kB view hashes)

Uploaded Source

Built Distribution

torch_sparse_tensor-0.2.0-py3-none-any.whl (12.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page