Skip to content

Commit

Permalink
Merge pull request #1921 from cwpearson/enhancement/doxygen-enable-html
Browse files Browse the repository at this point in the history
set GENERATE_HTML = YES in Doxyfile
  • Loading branch information
lucbv authored Sep 20, 2023
2 parents a4f117b + 62a2d72 commit 043376f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions blas/src/KokkosBlas1_mult.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,6 @@ void mult(const execution_space& space, typename YMV::const_value_type& gamma,
/// \param alpha [in] The scalar to apply to A.
/// \param A [in] The vector to apply to X.
/// \param X [in] The X vector.
///
/// \return Y = gamma * Y + alpha * A * X.
template <class YMV, class AV, class XMV>
void mult(typename YMV::const_value_type& gamma, const YMV& Y,
typename AV::const_value_type& alpha, const AV& A, const XMV& X) {
Expand Down
4 changes: 2 additions & 2 deletions docs/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ IGNORE_PREFIX =
# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
# The default value is: YES.

GENERATE_HTML = NO
GENERATE_HTML = YES

# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
Expand Down Expand Up @@ -1643,7 +1643,7 @@ FORMULA_MACROFILE =
# The default value is: NO.
# This tag requires that the tag GENERATE_HTML is set to YES.

USE_MATHJAX = NO
USE_MATHJAX = YES

# With MATHJAX_VERSION it is possible to specify the MathJax version to be used.
# Note that the different versions of MathJax have different requirements with
Expand Down

0 comments on commit 043376f

Please sign in to comment.