Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ This folder contains oneMath documentation in reStructuredText (rST) format.

The documentation build step is skipped by default.
To enable building documentation from the main build, set `-DBUILD_DOC=ON`.
For more information see [Building with CMake](../README.md#building-with-cmake).

Make sure you have Sphinx installed:
`pip install sphinx`

To build documentation only, use the following commands from the current folder:
```bash
Expand Down
4 changes: 2 additions & 2 deletions docs/create_new_backend.rst
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ Here is the list of files that should be created/updated to integrate the new wr
+ PUBLIC ONEMATH::NEWLIB::NEWLIB
)

Now you can build the backend library for ``newlib`` to make sure the third-party library integration was completed successfully (for more information, see `Build with cmake <../README.md#building-with-cmake>`_)
Now you can build the backend library for ``newlib`` to make sure the third-party library integration was completed successfully (for more information, see `Building the Project with DPC++ <https://oneapi-src.github.io/oneMKL/building_the_project_with_dpcpp.html>`_)

.. code-block:: bash

Expand Down Expand Up @@ -463,7 +463,7 @@ Update the following files to enable the new third-party library for unit tests:
+ devices.push_back(sycl::device(sycl::host_selector()));
+ #endif

Now you can build and run functional testing for enabled third-party libraries (for more information see `Build with cmake <../README.md#building-with-cmake>`_).
Now you can build and run functional testing for enabled third-party libraries (for more information see `Building the Project with DPC++ <https://oneapi-src.github.io/oneMKL/building_the_project_with_dpcpp.html>`_).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see "Building and Running Tests"?


.. code-block:: bash

Expand Down
Loading