Remove unnecessary extension from float16 constant tests
authorAlan Baker <alanbaker@google.com>
Sun, 25 Aug 2019 17:23:42 +0000 (13:23 -0400)
committerAlexander Galazin <Alexander.Galazin@arm.com>
Mon, 30 Sep 2019 10:56:25 +0000 (06:56 -0400)
Remove the 16-bit storage extension from the float16 constat tests. The
storage functionality is unused.

Component: Vulkan

VK-GL-CTS Issue: 1931

Affects:
dEQP-VK.spirv_assembly.instruction.graphics.float16.opconstant*

Change-Id: I5a69d77a72e34eecd4bc67f9916f44b1df848191

external/vulkancts/modules/vulkan/spirv_assembly/vktSpvAsmInstructionTests.cpp

index b37a4b5..822fea2 100644 (file)
@@ -10704,7 +10704,6 @@ tcu::TestCaseGroup* createOpConstantFloat16Tests(tcu::TestContext& testCtx)
        outputColors[2] = RGBA(127, 255, 127, 255);
        outputColors[3] = RGBA(127, 127, 255, 255);
 
-       extensions.push_back("VK_KHR_16bit_storage");
        extensions.push_back("VK_KHR_shader_float16_int8");
        features.extFloat16Int8 = EXTFLOAT16INT8FEATURES_FLOAT16;
 
@@ -10712,7 +10711,6 @@ tcu::TestCaseGroup* createOpConstantFloat16Tests(tcu::TestContext& testCtx)
        {
                map<string, string> fragments;
 
-               fragments["extension"]  = "OpExtension \"SPV_KHR_16bit_storage\"";
                fragments["capability"] = "OpCapability Float16\n";
                fragments["pre_main"]   = tests[testNdx].constants;
                fragments["testfun"]    = string(functionStart) + tests[testNdx].code + functionEnd;