sample_cpu.h 243 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
#pragma once

#include <torch/extension.h>

std::tuple<torch::Tensor, torch::Tensor, torch::Tensor, torch::Tensor>
6
7
sample_adj_cpu(torch::Tensor rowptr, torch::Tensor col, torch::Tensor idx,
               int64_t num_neighbors, bool replace);