//TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-vk -render-feature cooperative-vector -output-using-type -emit-spirv-directly //TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-dx12 -render-feature cooperative-vector -dx12-experimental -output-using-type -profile cs_6_9 -Xslang... -Xdxc -Vd -X. //TEST(compute):COMPARE_COMPUTE(filecheck-buffer=CHECK):-cpu -output-using-type // CHECK: type: float // CHECK-NEXT: 1.000000 // CHECK-NEXT: 2.000000 // CHECK-NEXT: 3.000000 // CHECK-NEXT: 2.000000 //TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):out,name=outputBuffer RWStructuredBuffer outputBuffer; //TEST_INPUT:ubuffer(data=[1.0 2.0 3.0 4.0], stride=4),name=input1 ByteAddressBuffer input1; //TEST_INPUT:ubuffer(data=[5.0 4.0 3.0 2.0], stride=4),name=input2 ByteAddressBuffer input2; [numthreads(1, 1, 1)] void computeMain() { CoopVec vec1 = coopVecLoad<4, float>(input1); CoopVec vec2 = coopVecLoad<4, float>(input2); CoopVec result = min(vec1, vec2); for(int i = 0; i < result.getCount(); ++i) outputBuffer[i] = result[i]; }