/*! * Copyright (c) 2020 by Contributors * \file kernel/cpu/segment_reduce.cc * \brief Segment reduce C APIs and definitions. */ #include "./segment_reduce.h" #include #include #include "./spmm_binary_ops.h" namespace dgl { namespace aten { /*! \brief Segment Reduce operator. */ template void SegmentReduce( const std::string& op, NDArray feat, NDArray offsets, NDArray out, NDArray arg) { if (op == "sum") { cpu::SegmentSum(feat, offsets, out); } else if (op == "max" || op == "min") { if (op == "max") cpu::SegmentCmp>( feat, offsets, out, arg); else cpu::SegmentCmp>( feat, offsets, out, arg); } else { LOG(FATAL) << "Unsupported reduce function " << op; } } /*! \brief Backward function of segment cmp.*/ template void BackwardSegmentCmp( NDArray feat, NDArray arg, NDArray out) { cpu::BackwardSegmentCmp(feat, arg, out); } template void SegmentReduce( const std::string &op, NDArray feat, NDArray offsets, NDArray out, NDArray arg); template void SegmentReduce( const std::string &op, NDArray feat, NDArray offsets, NDArray out, NDArray arg); template void SegmentReduce( const std::string &op, NDArray feat, NDArray offsets, NDArray out, NDArray arg); template void SegmentReduce( const std::string &op, NDArray feat, NDArray offsets, NDArray out, NDArray arg); template void BackwardSegmentCmp( NDArray feat, NDArray arg, NDArray out); template void BackwardSegmentCmp( NDArray feat, NDArray arg, NDArray out); template void BackwardSegmentCmp( NDArray feat, NDArray arg, NDArray out); template void BackwardSegmentCmp( NDArray feat, NDArray arg, NDArray out); } // namespace aten } // namespace dgl