18 lines
589 B
Plaintext
18 lines
589 B
Plaintext
//TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -shaderobj -output-using-type
|
|
//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute -shaderobj -output-using-type
|
|
//TEST(compute):COMPARE_COMPUTE_EX:-cpu -compute -shaderobj -output-using-type
|
|
|
|
import rng;
|
|
|
|
//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0 0 0], stride=4):out,name=outputBuffer
|
|
RWStructuredBuffer<uint64_t> outputBuffer;
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void computeMain(int3 dispatchThreadID : SV_DispatchThreadID)
|
|
{
|
|
Xoroshiro128Plus rng = {1, 2};
|
|
for (int i = 0; i < 5; i++)
|
|
{
|
|
outputBuffer[i] = rng.next();
|
|
}
|
|
} |