diff --git a/cmake/modules/GpuCppLibrary.cmake b/cmake/modules/GpuCppLibrary.cmake index 8c2d34e0ab..8304cc59f3 100644 --- a/cmake/modules/GpuCppLibrary.cmake +++ b/cmake/modules/GpuCppLibrary.cmake @@ -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 diff --git a/fbgemm_gpu/docs/src/conf.py b/fbgemm_gpu/docs/src/conf.py index 04ba568c86..5363e2ac19 100644 --- a/fbgemm_gpu/docs/src/conf.py +++ b/fbgemm_gpu/docs/src/conf.py @@ -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 -------------------------------------------------------------- diff --git a/fbgemm_gpu/docs/src/general/documentation/Cpp.rst b/fbgemm_gpu/docs/src/general/documentation/Cpp.rst index b0c5afd9e2..de3299f69a 100644 --- a/fbgemm_gpu/docs/src/general/documentation/Cpp.rst +++ b/fbgemm_gpu/docs/src/general/documentation/Cpp.rst @@ -4,7 +4,7 @@ Adding Documentation to C++ Code -------------------------------- Documentation for C++ is provided through -`Javadoc-style comments `__ +`Javadoc-style comments `__ and generated using Sphinx, `Doxygen `__, and `Breathe `__.