graphlearn_torch/csrc/cuda/random_negative_sampler.cuh (24 lines of code) (raw):
/* Copyright 2022 Alibaba Group Holding Limited. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef GRAPHLEARN_TORCH_CUDA_RANDOM_NEGATIVE_SAMPLER_CUH_
#define GRAPHLEARN_TORCH_CUDA_RANDOM_NEGATIVE_SAMPLER_CUH_
#include "graphlearn_torch/include/negative_sampler.h"
namespace graphlearn_torch {
class CUDARandomNegativeSampler : public NegativeSampler {
public:
CUDARandomNegativeSampler(const Graph* graph) : NegativeSampler(graph) {}
~CUDARandomNegativeSampler() {}
virtual std::tuple<torch::Tensor, torch::Tensor> Sample(
int32_t req_num, int32_t trials_num, bool padding=false);
};
} // namespace graphlearn_torch
#endif // GRAPHLEARN_TORCH_CUDA_RANDOM_NEGATIVE_SAMPLER_CUH_