Skip to content

Commit

Permalink
rocblas-remove-int8x4-02(09) Resolve ROCm#2441 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
atamazov committed Oct 14, 2023
1 parent e6b92e7 commit 6496ca9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/datatypes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ typedef enum {
miopenInt8 = 3,
/* Value 4 is reserved. */
miopenBFloat16 = 5,
miopenDouble = 6,
miopenFloat8 = 7,
miopenBFloat8 = 8
} miopenDataType_t;
```

Expand All @@ -23,6 +26,9 @@ Type descriptions:
* `miopenInt32` - 32-bit integer, used primarily for `int8` convolution outputs
* `miopenInt8` - 8-bit integer, currently only supported by `int8` convolution forward path, tensor set, tensor copy, tensor cast, tensor transform, tensor transpose, and im2col.
* `miopenBFloat16` - brain float fp-16 (8-bit exponent, 7-bit fraction), currently only supported by convolutions, tensor set, and tensor copy.
* `miopenDouble` - 64-bit floating point, supported only by reduction, layerNorm, batchNorm.
* `miopenFloat8` - 8-bit floating point (layout 1.4.3, exponent bias 7), currently only supported by convolutions.
* `miopenBFloat8` - 8-bit floating point (layout 1.5.2, exponent bias 15), currently only supported by convolutions.


Note: In addition to the standard datatypes above, pooling contains its own indexing datatypes:
Expand Down

0 comments on commit 6496ca9

Please sign in to comment.