diff options
author | Viktoria Maximova <viktoria.maksimova@intel.com> | 2023-08-16 18:21:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 09:21:06 -0700 |
commit | b8b9eb8640c8c0107ba580fbcb10f969022ca32c (patch) | |
tree | 201bef9f4b146160ef7eabcb40bfb2c8faaee91c /include/spirv/unified1/spirv.json | |
parent | 45fc02a6c67016b3e5ff6e4896a61544a40f90f8 (diff) | |
download | SPIRV-Headers-b8b9eb8640c8c0107ba580fbcb10f969022ca32c.tar.gz SPIRV-Headers-b8b9eb8640c8c0107ba580fbcb10f969022ca32c.tar.bz2 SPIRV-Headers-b8b9eb8640c8c0107ba580fbcb10f969022ca32c.zip |
Headers support for two Intel extensions (#356)
* Add SPV_INTEL_global_variable_fpga_decorations
Spec: https://github.com/KhronosGroup/SPIRV-Registry/blob/main/extensions/INTEL/SPV_INTEL_global_variable_fpga_decorations.asciidoc
* Add SPV_INTEL_global_variable_host_access
Spec: https://github.com/KhronosGroup/SPIRV-Registry/blob/main/extensions/INTEL/SPV_INTEL_global_variable_host_access.asciidoc
* Update headers generator
* update headers after generating script
Diffstat (limited to 'include/spirv/unified1/spirv.json')
-rw-r--r-- | include/spirv/unified1/spirv.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/spirv/unified1/spirv.json b/include/spirv/unified1/spirv.json index 6a20cf1..b1b60a4 100644 --- a/include/spirv/unified1/spirv.json +++ b/include/spirv/unified1/spirv.json @@ -626,6 +626,9 @@ "SingleElementVectorINTEL": 6085, "VectorComputeCallableFunctionINTEL": 6087, "MediaBlockIOINTEL": 6140, + "InitModeINTEL": 6147, + "ImplementInRegisterMapINTEL": 6148, + "HostAccessINTEL": 6168, "FPMaxErrorDecorationINTEL": 6170, "LatencyControlLabelINTEL": 6172, "LatencyControlConstraintINTEL": 6173, @@ -1163,7 +1166,9 @@ "DebugInfoModuleINTEL": 6114, "BFloat16ConversionINTEL": 6115, "SplitBarrierINTEL": 6141, + "GlobalVariableFPGADecorationsINTEL": 6146, "FPGAKernelAttributesv2INTEL": 6161, + "GlobalVariableHostAccessINTEL": 6167, "FPMaxErrorINTEL": 6169, "FPGALatencyControlINTEL": 6171, "FPGAArgumentInterfacesINTEL": 6174, @@ -1312,6 +1317,26 @@ } }, { + "Name": "InitializationModeQualifier", + "Type": "Value", + "Values": + { + "InitOnDeviceReprogramINTEL": 0, + "InitOnDeviceResetINTEL": 1 + } + }, + { + "Name": "HostAccessQualifier", + "Type": "Value", + "Values": + { + "NoneINTEL": 0, + "ReadINTEL": 1, + "WriteINTEL": 2, + "ReadWriteINTEL": 3 + } + }, + { "Name": "Op", "Type": "Value", "Values": |