Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vmalia committed Sep 3, 2024
1 parent 3fc1c4c commit 1ea4bda
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,22 @@ The implementation must define a macro, `ONEMKL_SPEC_VERSION` as having the nume
The specification version can be created by appending all digits of the specification version in the format of <MAJOR><MINOR>. MINOR version always uses two digits. This version can be used to check the compatibility of the implementation with the specification version.

Version Example
oneAPI 1.1 rev 1 will be represented as a numerical value of 101
oneAPI 1.2 rev 1 will be represented as a numerical value of 102
oneAPI 1.2 rev 2 will be represented as a numerical value of 102
| oneAPI 1.1 rev 1 will be represented as a numerical value of 101
| oneAPI 1.2 rev 1 will be represented as a numerical value of 102
| oneAPI 1.2 rev 2 will be represented as a numerical value of 102
Macro Example

// For oneAPI 1.2 rev 1
#define ONEMKL_SPEC_VERSION 102
.. code-block:: c
// For oneAPI 1.2 rev 2
#define ONEMKL_SPEC_VERSION 102
// For oneAPI 1.2 rev 1
#define ONEMKL_SPEC_VERSION 102
// For oneAPI 1.3 rev 1
#define ONEMKL_SPEC_VERSION 103
// For oneAPI 1.2 rev 2
#define ONEMKL_SPEC_VERSION 102
// For oneAPI 1.3 rev 1
#define ONEMKL_SPEC_VERSION 103
.. _onemkl_pre_post_conditions:
Expand Down

0 comments on commit 1ea4bda

Please sign in to comment.