Commit cd6e312c authored by Paul's avatar Paul
Browse files

Fix c++ documentaion

parent 9b9d1418
...@@ -5,11 +5,15 @@ set(DOXYGEN_OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/doxygen/) ...@@ -5,11 +5,15 @@ set(DOXYGEN_OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/doxygen/)
add_doxygen_doc( add_doxygen_doc(
OUTPUT_DIRECTORY ${DOXYGEN_OUTPUT} OUTPUT_DIRECTORY ${DOXYGEN_OUTPUT}
INPUT INPUT
${CMAKE_CURRENT_SOURCE_DIR}/../src ${PROJECT_SOURCE_DIR}/src
INCLUDE_PATH INCLUDE_PATH
${CMAKE_CURRENT_SOURCE_DIR}/../src/include ${PROJECT_SOURCE_DIR}/src/include
${CMAKE_CURRENT_SOURCE_DIR}/../src/targets/cpu/include ${PROJECT_SOURCE_DIR}/src/targets/cpu/include
${CMAKE_CURRENT_SOURCE_DIR}/../src/targets/gpu/include ${PROJECT_SOURCE_DIR}/src/targets/gpu/include
STRIP_FROM_INC_PATH
${PROJECT_SOURCE_DIR}/src/include
${PROJECT_SOURCE_DIR}/src/targets/cpu/include
${PROJECT_SOURCE_DIR}/src/targets/gpu/include
SEARCH_INCLUDES YES SEARCH_INCLUDES YES
MACRO_EXPANSION YES MACRO_EXPANSION YES
RECURSIVE YES RECURSIVE YES
......
...@@ -10,4 +10,5 @@ C++ User Guide ...@@ -10,4 +10,5 @@ C++ User Guide
reference/operators reference/operators
reference/program reference/program
reference/targets reference/targets
reference/quantization
reference/pass reference/pass
...@@ -6,7 +6,11 @@ operation ...@@ -6,7 +6,11 @@ operation
.. doxygenstruct:: migraphx::operation .. doxygenstruct:: migraphx::operation
.. doxygenfunction:: migraphx::MIGRAPHX_INLINE_NS::is_context_free
.. doxygenfunction:: migraphx::MIGRAPHX_INLINE_NS::has_finalize
operators operators
--------- ---------
.. doxygenfile:: operators.hpp .. doxygennamespace:: migraphx::op
...@@ -11,15 +11,10 @@ dead_code_elimination ...@@ -11,15 +11,10 @@ dead_code_elimination
.. doxygenstruct:: migraphx::dead_code_elimination .. doxygenstruct:: migraphx::dead_code_elimination
common_subexpression_elimination eliminate_common_subexpression
-------------------------------- ------------------------------
.. doxygenstruct:: migraphx::common_subexpression_elimination .. doxygenstruct:: migraphx::eliminate_common_subexpression
constant_propagate
------------------
.. doxygenstruct:: migraphx::constant_propagate
eliminate_concat eliminate_concat
---------------- ----------------
...@@ -31,10 +26,35 @@ eliminate_contiguous ...@@ -31,10 +26,35 @@ eliminate_contiguous
.. doxygenstruct:: migraphx::eliminate_contiguous .. doxygenstruct:: migraphx::eliminate_contiguous
fwd_conv_batchnorm_rewrite eliminate_identity
-------------------------- ------------------
.. doxygenstruct:: migraphx::eliminate_identity
eliminate_pad
-------------
.. doxygenstruct:: migraphx::eliminate_pad
propagate_constant
------------------
.. doxygenstruct:: migraphx::propagate_constant
rewrite_batchnorm
-----------------
.. doxygenstruct:: migraphx::rewrite_batchnorm
rewrite_rnn
-----------
.. doxygenstruct:: migraphx::rewrite_rnn
schedule
--------
.. doxygenstruct:: migraphx::fwd_conv_batchnorm_rewrite .. doxygenstruct:: migraphx::schedule
simplify_algebra simplify_algebra
---------------- ----------------
......
...@@ -22,3 +22,8 @@ parse_onnx ...@@ -22,3 +22,8 @@ parse_onnx
---------- ----------
.. doxygenfunction:: migraphx::MIGRAPHX_INLINE_NS::parse_onnx .. doxygenfunction:: migraphx::MIGRAPHX_INLINE_NS::parse_onnx
parse_tf
--------
.. doxygenfunction:: migraphx::MIGRAPHX_INLINE_NS::parse_tf
Quantization
============
quantize_fp16
-------------
.. doxygenfunction:: migraphx::MIGRAPHX_INLINE_NS::quantize_fp16
quantize_int8
-------------
.. doxygenfunction:: migraphx::MIGRAPHX_INLINE_NS::quantize_int8
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