Yeonhong Park
Results
2
issues of
Yeonhong Park
``` import torch from torch_sparse.matmul import spmm_mean adj = torch.load('adj') x = torch.rand(adj.size(1), 256, device='cuda:0') out = spmm_mean(adj, x) print(out) ``` Illegal memory access error comes out when I run...
Hello, I ran the code provided for LongBench using the Llama-3-8B-Instruct model but couldn't reproduce the results reported in Table 8 of your paper. Specifically, the full precision baseline model's...