First Commit

This commit is contained in:
2025-02-06 22:24:29 +08:00
parent ed7df4c81e
commit 7539e6a53c
18116 changed files with 6181499 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
float4 main() : SV_Target
{
float f1a;
float1 f1b;
f1a = f1b; // convert float1 to float
f1b = f1a; // convert float to float1
float3 f3;
step(0.0, f3);
sin(f1b); // test 1-vectors in intrinsics
return float4(0,0,0,0);
}