Skip to content

Commit

Permalink
DOC: Clear warnings from roxygen build (#3004)
Browse files Browse the repository at this point in the history
* clear warnings from doc CI job

* another attempt

* attempt at clearing obsolence warning

* add tag for mathjax

* Update cpp/oneapi/dal/algo/jaccard/vertex_similarity_types.hpp

Co-authored-by: Victoriya Fedotova <[email protected]>

* Update cpp/oneapi/dal/graph/service_functions.hpp

Co-authored-by: Victoriya Fedotova <[email protected]>

---------

Co-authored-by: Victoriya Fedotova <[email protected]>
  • Loading branch information
david-cortes-intel and Vika-F authored Dec 11, 2024
1 parent f52a129 commit 11f999e
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 20 deletions.
1 change: 0 additions & 1 deletion cpp/oneapi/dal/algo/jaccard/common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ struct ONEDAL_EXPORT caching_builder {
/// Returns the pointer to the allocated memory of size block_max_size.
///
/// @param [in] block_max_size The required size of memory
/// @param [in/out] builder The caching builder
void* operator()(std::int64_t block_max_size);

std::shared_ptr<byte_t> result_ptr;
Expand Down
4 changes: 2 additions & 2 deletions cpp/oneapi/dal/algo/jaccard/vertex_similarity_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class vertex_similarity_input : public base {
"Only undirected_adjacency_vector_graph is supported.");
/// Constructs the algorithm input initialized with the graph and the caching builder.
///
/// @param [in] graph The input graph
/// @param [in/out] builder The caching builder
/// @param [in] g The input graph
/// @param [in, out] builder The caching builder
vertex_similarity_input(const Graph& g, caching_builder& builder);

/// Returns the constant reference to the input graph
Expand Down
2 changes: 1 addition & 1 deletion cpp/oneapi/dal/graph/service_functions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ constexpr auto get_vertex_outward_neighbors(const Graph &g, vertex_type<Graph> u
/// Returns the value of an edge (u, v)
///
/// @tparam Graph Type of the graph
/// @param [in] graph Input graph object
/// @param [in] g Input graph object
/// @param [in] u Source vertex index
/// @param [in] v Destination vertex index
///
Expand Down
22 changes: 14 additions & 8 deletions cpp/oneapi/dal/spmd/communicator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,18 +251,24 @@ class communicator : public base {
}
template <typename D>
request bcast(const array<D>& ary, std::int64_t root = -1) const;

/// Gathers data from all ranks and distributes the results back to all ranks
///
/// @param send_buf The send buffer
/// @param send_count The number of elements of `dtype` in `send_buf`
/// @param recv_buf The receiving buffer
/// @param recv_count The number of elements of `dtype` in `recv_buf`
/// @param dtype The type of elements in the passed buffers
/// @param send The send buffer
/// @param recv The receiving buffer
/// @tparam D The type of elements in the passed buffers
///
/// @return The object to track the progress of the operation
template <typename D>
request allgather(const array<D>& send, const array<D>& recv) const;

/// Gathers data from all ranks and distributes the results back to all ranks
///
/// @param scalar The send element
/// @param recv The receiving buffer
/// @tparam D The type of elements in send / recv
///
/// @return The object to track the progress of the operation
template <typename D>
request allgather(const D& scalar, const array<D>& recv) const;
/// Collects data from all the ranks within a communicator into a single buffer
Expand All @@ -274,9 +280,9 @@ class communicator : public base {
/// @param recv_buf The receiveing buffer, must contain at least
/// `rank_count * recv_count` elements,
/// significant only at `root`
/// @param recv_count The number of elements of `dtype` received from
/// each rank, must contain at least `rank_count` elements,
/// significant only at `root`
/// @param recv_counts The number of elements of `dtype` received from
/// each rank, must contain at least `rank_count` elements,
/// significant only at `root`
/// @param displs Entry $i$ specifies the displacement relative to
/// `recv_buf` at which to place the incoming data
/// from process $i$, must contain at least `rank_count`
Expand Down
2 changes: 1 addition & 1 deletion cpp/oneapi/dal/test/engine/linalg/random.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ inline matrix<T> generate_uniform_matrix(const shape& s, T a, T b, int seed) {
}

/// Generates symmetric positive-definite matrix with diagonal dominance.
/// $\frac{1}{2}(A + A^T) + nE$, where $A$ is uniformly distributed matrix, $dim(A) = n$.
/// \f$\frac{1}{2}(A + A^T) + nE\f$, where $A$ is uniformly distributed matrix, \f$dim(A) = n\f$.
template <typename Float>
inline matrix<Float> generate_symmetric_positive_matrix(std::int64_t dim,
Float a,
Expand Down
7 changes: 0 additions & 7 deletions docs/doxygen/oneapi/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1128,13 +1128,6 @@ CLANG_DATABASE_PATH =

ALPHABETICAL_INDEX = YES

# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
# which the alphabetical index list will be split.
# Minimum value: 1, maximum value: 20, default value: 5.
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.

COLS_IN_ALPHA_INDEX = 5

# In case all classes in a project start with a common prefix, all classes will
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
# can be used to specify a prefix (or a list of prefixes) that should be ignored
Expand Down

0 comments on commit 11f999e

Please sign in to comment.