You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -281,7 +281,7 @@ Exit Code 1
281
281
| AMXBF16 | Tile computational operations on BFLOAT16 numbers |
282
282
| AMXINT8 | Tile computational operations on 8-bit integers |
283
283
| AMXFP16 | Tile computational operations on FP16 numbers |
284
-
| AMXFP8 | Tile computational operations on FP8 numbers |
284
+
| AMXFP8 | Tile computational operations on FP8 numbers |
285
285
| AMXCOMPLEX | Tile computational operations on complex numbers |
286
286
| AMXTILE | Tile architecture |
287
287
| AMXTF32 | Matrix Multiplication of TF32 Tiles into Packed Single Precision Tile |
@@ -451,6 +451,9 @@ Exit Code 1
451
451
| TLB_FLUSH_NESTED | AMD: Flushing includes all the nested translations for guest translations |
452
452
| TME | Intel Total Memory Encryption. The following MSRs are supported: IA32_TME_CAPABILITY, IA32_TME_ACTIVATE, IA32_TME_EXCLUDE_MASK, and IA32_TME_EXCLUDE_BASE. |
453
453
| TOPEXT | TopologyExtensions: topology extensions support. Indicates support for CPUID Fn8000_001D_EAX_x[N:0]-CPUID Fn8000_001E_EDX. |
454
+
| TSA_L1_NO | AMD only: Not vulnerable to TSA-L1 |
455
+
| TSA_SQ_NO | AMD only: Not vulnerable to TSA-SQ |
456
+
| TSA_VERW_CLEAR | AMD: If set, the memory form of the VERW instruction may be used to help mitigate TSA |
454
457
| TSCRATEMSR | MSR based TSC rate control. Indicates support for MSR TSC ratio MSRC000_0104 |
Copy file name to clipboardExpand all lines: cpuid.go
+20-1Lines changed: 20 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -256,6 +256,9 @@ const (
256
256
TLB_FLUSH_NESTED// AMD: Flushing includes all the nested translations for guest translations
257
257
TME// Intel Total Memory Encryption. The following MSRs are supported: IA32_TME_CAPABILITY, IA32_TME_ACTIVATE, IA32_TME_EXCLUDE_MASK, and IA32_TME_EXCLUDE_BASE.
258
258
TOPEXT// TopologyExtensions: topology extensions support. Indicates support for CPUID Fn8000_001D_EAX_x[N:0]-CPUID Fn8000_001E_EDX.
259
+
TSA_L1_NO// AMD only: Not vulnerable to TSA-L1
260
+
TSA_SQ_NO// AM onlyD: Not vulnerable to TSA-SQ
261
+
TSA_VERW_CLEAR// If set, the memory form of the VERW instruction may be used to help mitigate TSA
259
262
TSCRATEMSR// MSR based TSC rate control. Indicates support for MSR TSC ratio MSRC000_0104
0 commit comments