Skip to content

Commit ab2b25d

Browse files
committed
fix: docu
1 parent 0768a62 commit ab2b25d

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

docs_sphinx/api/mini_jit.rst

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,6 @@ internal
3030
kernels
3131
-------
3232
.. doxygennamespace:: mini_jit::kernels
33-
:project: Machine Learning Compilers
34-
:content-only:
35-
:members:
36-
:private-members:
37-
:undoc-members:
38-
39-
tensor_operation
40-
------
41-
.. doxygennamespace:: mini_jit::tensor_operation
4233
:project: Machine Learning Compilers
4334
:content-only:
4435
:members:

docs_sphinx/submissions/report_25_06_05.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ Additionally, we do not modify any existing chosen primitives by the user.
200200
We added shared identification support to our optimization pass. At most, we can convert to shared until the first primitive arises or the
201201
first k-dimensional primitive. We only tag as many dimensions as are shared, i.e., if the first dimension is perfectly divisible by the
202202
number of OpenMP threads in use, we do not convert any further dimensions as shared. Additionally, we only convert to shared if the
203-
unbalanced ratio of the dimensions is greater than 1%. :math:`(shared_dimensions_size % thread_count) / shared_dimensions_size < 1%`.
203+
unbalanced ratio of the dimensions is greater than 1%.
204+
:code:`(shared_dimensions_size % thread_count) / shared_dimensions_size < 1%`.
204205

205206
.. code-block::
206207
@@ -284,7 +285,7 @@ We tested our optimization passes in ``TensorOptimization.test.cpp``. One exhaus
284285
primitive ``reordering``, ``fusing``, ``primitive identification``, and ``shared identification``. In addition to testing the correctness of the tensor
285286
configuration after the optimization passes, we also test the correctness of the tensor operation.
286287

287-
.. code-block::cpp
288+
.. code-block:: cpp
288289
:emphasize-lines: 5-18, 20-33, 35-36
289290
290291
TEST_CASE("Test tensor operation with optimization dimension test reordering and fusing", "[tensor_optimization][gemm][correctness]")

0 commit comments

Comments
 (0)