pytorch_sparse icon indicating copy to clipboard operation
pytorch_sparse copied to clipboard

PyTorch Extension Library of Optimized Autograd Sparse Matrix Operations

Results 69 pytorch_sparse issues
Sort by recently updated
recently updated
newest added
trafficstars

I've been compiling this library against pytorch:main (1.11.0a0+git1b66915), using gcc 11.1 and some change (I'm assuming pytorch) is causing compile errors: ``` csrc/cpu/neighbor_sample_cpu.cpp:157:62: error: expected primary-expression before ‘>’ token 157...

stale

I am using torch-sparse version 0.6.8 as a dependency for a project I am working on. However, I get the following error inside the `torch_sparse/__init__.py` file: `torch.ops.load_library(importlib.machinery.PathFinder().find_spec(` `AttributeError: 'NoneType' object...

My env: ``` $ pip list|grep torch torch 1.9.1+cu111 torch-cluster 1.6.0 torch-geometric 2.0.4 torch-scatter 2.0.9 torch-sparse 0.6.14 torch-spline-conv 1.2.1 torchaudio 0.9.1 torchvision 0.10.1+cu111 $ nvcc --version nvcc: NVIDIA (R) Cuda...

I try to follow the instructions for installing METIS, as I think the link is not working now, I suppose the correct repo is this one: https://github.com/KarypisLab/METIS. I run the...

I'm developing a graph pooling model like DiffPool, I tried to use SparseTensor for adjacent matrix `adj_t` and assignment matrix `s` (both are `{0,1}` matrix), and do graph pooling for...

Hi, first of all thanks for the great package and for providing pre-built binaries. Is there already an estimate when binaries compatible with the [latest PyTorch release, 1.12](https://github.com/pytorch/pytorch/releases/tag/v1.12.0), will be...

Hello, As a followup of #236, I implemented the element-wise multiplication for two sparse matrices and added a test file for the `mul` operation. Best, Haoteng

Hello, Recently, I work on a task needs better support of SparseTensor for Pytorch and pytorch-sparse helps me a lot. It seems like currently it does not support operations between...

enhancement

Hi, I developed my model with the environment blow: torch==1.4.0 numpy==1.18.1 torch_scatter==1.4.0 torch_sparse==0.4.3 torch_cluster==1.4.5 torch_geometric==1.3.2 but i can't install torch-sparse==0.4.3 I try this commands : !pip install torch-sparse==0.4.3 !pip install...