Skip to content

Commit

Permalink
Minor doc fix (#3618)
Browse files Browse the repository at this point in the history
Summary:
X-link: facebookresearch/FBGEMM#699

- Minor doc fix to address docs build failure

Pull Request resolved: #3618

Reviewed By: sryap

Differential Revision: D68720537

Pulled By: q10

fbshipit-source-id: 35468750a4821b3f0e2047135a966bd4d263d623
  • Loading branch information
q10 committed Jan 28, 2025
1 parent 71185f2 commit 7243043
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions cmake/modules/GpuCppLibrary.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,9 @@ function(gpu_cpp_library)

if(USE_ROCM)
if(lib_sources)
# Fetch the equivalent HIPified sources if available.
# This presumes that `hipify()` has already been run.
# Fetch the equivalent HIPified sources if available. The mapping
# is provided by a table that is generated during transpilation
# process, so this presumes that `hipify()` has already been run.
#
# This code is placed under an if-guard so that it won't fail for
# targets that have nothing to do with HIP, e.g. asmjit
Expand Down
4 changes: 2 additions & 2 deletions fbgemm_gpu/docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
author = "FBGEMM Team"

# The short X.Y version.
version = "1.0"
version = "1.1"

# The full version, including alpha/beta/rc tags
release = "1.0.0"
release = "1.1.0"


# -- Path setup --------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion fbgemm_gpu/docs/src/general/documentation/Cpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Adding Documentation to C++ Code
--------------------------------

Documentation for C++ is provided through
`Javadoc-style comments <https://www.oracle.com/java/technologies/javase/javadoc-tool.html>`__
`Javadoc-style comments <https://www.oracle.com/technical-resources/articles/java/javadoc-tool.html>`__
and generated using Sphinx, `Doxygen <https://www.doxygen.nl/>`__, and
`Breathe <https://breathe.readthedocs.io>`__.

Expand Down

0 comments on commit 7243043

Please sign in to comment.