/*! * Copyright 2021 Contributors * * 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. * * @file graph/transform/to_bipartite.h * @brief Functions to convert a set of edges into a graph block with local * ids. */ #ifndef DGL_GRAPH_TRANSFORM_TO_BIPARTITE_H_ #define DGL_GRAPH_TRANSFORM_TO_BIPARTITE_H_ #include #include #include #include namespace dgl { namespace transform { /** * @brief Create a graph block from the set of * src and dst nodes (lhs and rhs respectively). * * @tparam XPU The type of device to operate on. * @tparam IdType The type to use as an index. * @param graph The graph from which to extract the block. * @param rhs_nodes The destination nodes of the block. * @param include_rhs_in_lhs Whether or not to include the * destination nodes of the block in the sources nodes. * @param [in/out] lhs_nodes The source nodes of the block. * * @return The block and the induced edges. */ template std::tuple> ToBlock( HeteroGraphPtr graph, const std::vector& rhs_nodes, bool include_rhs_in_lhs, std::vector* lhs_nodes); } // namespace transform } // namespace dgl #endif // DGL_GRAPH_TRANSFORM_TO_BIPARTITE_H_