diff options
author | MITSUNARI Shigeo <[email protected]> | 2024-10-13 15:07:35 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2024-10-13 15:07:35 +0900 |
commit | f3f2dd2d748859fd4438ab596950ba52769607a4 (patch) | |
tree | ee9615808148b5defbe69510d4495823f1f7ae09 /doc | |
parent | 14ae9bf4859739ca9b23f421d23693a15e75769d (diff) | |
download | xbyak-f3f2dd2d748859fd4438ab596950ba52769607a4.tar.gz xbyak-f3f2dd2d748859fd4438ab596950ba52769607a4.zip |
[skip ci] [doc] update setDefaultEncoding
Diffstat (limited to 'doc')
-rw-r--r-- | doc/usage.md | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/doc/usage.md b/doc/usage.md index 1ab56e1..53c0bb9 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -121,15 +121,14 @@ vmpsadbw(xm1, xm3, xm15, 3); // evex(avx10.2) ``` -- `setDefaultEncoding(PreferredEncoding vnniEnc = EvexEncoding, PreferredEncoding mpsadbwEnc = VexEncoding)` - - 1st argument. Set the default encoding to select EVEX or VEX for VNNI - - The default value is EvexEncoding (AVX512_VNNI). - - encoded as AVX-VNNI if VexEncoding is set. - - This parameter affects to vpdpbusd, vpdpbusds, vpdpwssd, vpdpwssds. - - 2nd argument. Set the default encoding to select EVEX or VEX for vmpsadbw - - The default value is VexEncoding (AVX/AVX2). - - encoded as AVX10.2 if EvexEncoding is set. - - This parameter affects to vmpsadbw. +- `setDefaultEncoding(PreferredEncoding vnniEnc = EvexEncoding, PreferredEncoding avx10Enc = VexEncoding)` + +param|vnniEnc|avx10Enc +-|-|- +EvexEncoding|AVX512_VNNI|AVX10.2 +VexEncoding|AVX/AVX2|AVX-VNNI-INT8 +default|EvexEncoding|VexEncoding +mnemonic|vpdpbusd, vpdpbusds, vpdpwssd, vpdpwssds|vmpsadbw, vpdpbssd ### Remark * `k1`, ..., `k7` are opmask registers. |