GitXplorerGitXplorer
c

reproducentissue

public
2 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
f380204ba6996aa26db0cbf426c463133b8b7caf

Sixth commit

committed 4 years ago
Unverified
5d7d3e1774907a9e42c5a4027ef02243a968823e

Fifth commit

committed 4 years ago
Unverified
5c3f032b658143ab75a4b804a02b38dfbdb0176d

Fourth commit

committed 4 years ago
Unverified
6ca2e65c394af437ceff687827162a04ccbf1292

Third commit

committed 4 years ago
Unverified
f630f76f58484695a9cb8f6c35aaff85869b6afb

Second commit

committed 4 years ago
Unverified
907b60f32405187eb6c67e03f83e44e9f77ae8e2

First commit

committed 4 years ago

README

The README file for this repository.

Build

clear && python setup.py clean && DEBUG=0 USE_NINJA=1 pip install -v -e .

Reproduce error

Run

python repro.py

which contains

import torch
import nestedtensor
a = nestedtensor._C.nested_tensor_impl(4)
b = torch.matmul(a, torch.tensor([1]))

Expecting this to print and then immediately exit from within the matmul kernel registered in nestedtensor/csrc/matmul.cpp.