Unverified Commit bcd37684 authored by Hongzhi (Steve), Chen's avatar Hongzhi (Steve), Chen Committed by GitHub
Browse files

[Misc] Replace /*! with /**. (#4823)



* replace

* blabla

* balbla

* blabla
Co-authored-by: default avatarSteve <ubuntu@ip-172-31-34-29.ap-northeast-1.compute.internal>
parent 619d735d
/*!
/**
* Copyright (c) 2019 by Contributors
* @file array/cpu/array_index_select.cc
* @brief Array index select CPU implementation
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/array_nonzero.cc
* @brief Array nonzero CPU implementation
......
/*!
/**
* Copyright (c) 2019 by Contributors
* @file array/cpu/array_op_impl.cc
* @brief Array operator CPU implementation
......
/*!
/**
* Copyright (c) 2019 by Contributors
* @file array/cpu/array_index_select.cc
* @brief Array index select CPU implementation
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/array_repeat.cc
* @brief Array repeat CPU implementation
......
/*!
/**
* Copyright (c) 2019 by Contributors
* @file array/cpu/array_scatter.cc
* @brief Array scatter CPU implementation
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/array_sort.cc
* @brief Array sort CPU implementation
......
/*!
/**
* Copyright (c) 2019 by Contributors
* @file dgl/array_utils.h
* @brief Utility classes and functions for DGL arrays.
......@@ -18,7 +18,7 @@
namespace dgl {
namespace aten {
/*!
/**
* @brief A hashmap that maps each ids in the given array to new ids starting
* from zero.
*
......@@ -109,7 +109,7 @@ class IdHashMap {
phmap::flat_hash_map<IdType, IdType> oldv2newv_;
};
/*
/**
* @brief Hash type for building maps/sets with pairs as keys.
*/
struct PairHash {
......
/*!
/**
* Copyright (c) 2019 by Contributors
* @file array/cpu/coo_coalesce.cc
* @brief COO coalescing
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/coo_line_graph.cc
* @brief COO LineGraph
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/coo_remove.cc
* @brief COO matrix remove entries CPU implementation
......@@ -17,7 +17,7 @@ namespace impl {
namespace {
/*! @brief COORemove implementation for COOMatrix with default consecutive edge
/** @brief COORemove implementation for COOMatrix with default consecutive edge
* IDs */
template <DGLDeviceType XPU, typename IdType>
void COORemoveConsecutive(
......@@ -45,7 +45,7 @@ void COORemoveConsecutive(
}
}
/*! @brief COORemove implementation for COOMatrix with shuffled edge IDs */
/** @brief COORemove implementation for COOMatrix with shuffled edge IDs */
template <DGLDeviceType XPU, typename IdType>
void COORemoveShuffled(
COOMatrix coo, IdArray entries, std::vector<IdType> *new_rows,
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/coo_sort.cc
* @brief COO sorting
......
/*!
/**
* Copyright (c) 2021 by Contributors
* @file array/cpu/csr_get_data.cc
* @brief Retrieve entries of a CSR matrix
......
/*!
/**
* Copyright (c) 2019 by Contributors
* @file array/cpu/csr_mm.cc
* @brief CSR Matrix Multiplication
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/coo_remove.cc
* @brief CSR matrix remove entries CPU implementation
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/csr_sort.cc
* @brief CSR sorting
......
/*!
/**
* Copyright (c) 2019 by Contributors
* @file array/cpu/csr_sum.cc
* @brief CSR Summation
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/csr_to_simple.cc
* @brief CSR sorting
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file array/cpu/coo_sort.cc
* @brief COO sorting
......
/*!
/**
* Copyright (c) 2020 by Contributors
* @file kernel/cpu/gaher_mm.cc
* @brief GatherMM C APIs and definitions.
......@@ -9,7 +9,7 @@
namespace dgl {
namespace aten {
/*! @brief Generalized SegmentMM. */
/** @brief Generalized SegmentMM. */
template <int XPU, typename IdType, typename DType>
void SegmentMM(const NDArray A,
const NDArray B,
......@@ -27,7 +27,7 @@ void SegmentMMBackwardB(const NDArray A,
LOG(FATAL) << "Unsupported CPU kernel for SegmentMMBackwardB.";
}
/*! @brief Generalized GatherMM. */
/** @brief Generalized GatherMM. */
template <int XPU, typename IdType, typename DType>
void GatherMM(const NDArray A,
const NDArray B,
......@@ -37,7 +37,7 @@ void GatherMM(const NDArray A,
LOG(FATAL) << "Unsupported CPU kernel for GatherMM.";
}
/*! @brief Generalized GatherMM_scatter. */
/** @brief Generalized GatherMM_scatter. */
template <int XPU, typename IdType, typename DType>
void GatherMMScatter(const NDArray A,
const NDArray B,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment