mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-10 22:19:09 +00:00
Only Constants.h remains in no namespace; but it may be addressed in the future as well. Bug: dawn:302 Change-Id: Ib9b9ab4b974ad1de1bb9f2302f4d24d8216f55e4 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/132841 Kokoro: Austin Eng <enga@chromium.org> Auto-Submit: Austin Eng <enga@chromium.org> Reviewed-by: Loko Kung <lokokung@google.com> Commit-Queue: Austin Eng <enga@chromium.org>
160 lines
5.3 KiB
C++
160 lines
5.3 KiB
C++
// Copyright 2018 The Dawn Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include <array>
|
|
|
|
#include "dawn/tests/DawnTest.h"
|
|
|
|
#include "dawn/utils/WGPUHelpers.h"
|
|
|
|
namespace dawn {
|
|
namespace {
|
|
|
|
class ComputeCopyStorageBufferTests : public DawnTest {
|
|
public:
|
|
static constexpr int kInstances = 4;
|
|
static constexpr int kUintsPerInstance = 4;
|
|
static constexpr int kNumUints = kInstances * kUintsPerInstance;
|
|
|
|
void BasicTest(const char* shader);
|
|
};
|
|
|
|
void ComputeCopyStorageBufferTests::BasicTest(const char* shader) {
|
|
// Set up shader and pipeline
|
|
auto module = utils::CreateShaderModule(device, shader);
|
|
|
|
wgpu::ComputePipelineDescriptor csDesc;
|
|
csDesc.compute.module = module;
|
|
csDesc.compute.entryPoint = "main";
|
|
|
|
wgpu::ComputePipeline pipeline = device.CreateComputePipeline(&csDesc);
|
|
|
|
// Set up src storage buffer
|
|
wgpu::BufferDescriptor srcDesc;
|
|
srcDesc.size = kNumUints * sizeof(uint32_t);
|
|
srcDesc.usage =
|
|
wgpu::BufferUsage::Storage | wgpu::BufferUsage::CopySrc | wgpu::BufferUsage::CopyDst;
|
|
wgpu::Buffer src = device.CreateBuffer(&srcDesc);
|
|
|
|
std::array<uint32_t, kNumUints> expected;
|
|
for (uint32_t i = 0; i < kNumUints; ++i) {
|
|
expected[i] = (i + 1u) * 0x11111111u;
|
|
}
|
|
queue.WriteBuffer(src, 0, expected.data(), sizeof(expected));
|
|
EXPECT_BUFFER_U32_RANGE_EQ(expected.data(), src, 0, kNumUints);
|
|
|
|
// Set up dst storage buffer
|
|
wgpu::BufferDescriptor dstDesc;
|
|
dstDesc.size = kNumUints * sizeof(uint32_t);
|
|
dstDesc.usage =
|
|
wgpu::BufferUsage::Storage | wgpu::BufferUsage::CopySrc | wgpu::BufferUsage::CopyDst;
|
|
wgpu::Buffer dst = device.CreateBuffer(&dstDesc);
|
|
|
|
std::array<uint32_t, kNumUints> zero{};
|
|
queue.WriteBuffer(dst, 0, zero.data(), sizeof(zero));
|
|
|
|
// Set up bind group and issue dispatch
|
|
wgpu::BindGroup bindGroup = utils::MakeBindGroup(device, pipeline.GetBindGroupLayout(0),
|
|
{
|
|
{0, src, 0, kNumUints * sizeof(uint32_t)},
|
|
{1, dst, 0, kNumUints * sizeof(uint32_t)},
|
|
});
|
|
|
|
wgpu::CommandBuffer commands;
|
|
{
|
|
wgpu::CommandEncoder encoder = device.CreateCommandEncoder();
|
|
wgpu::ComputePassEncoder pass = encoder.BeginComputePass();
|
|
pass.SetPipeline(pipeline);
|
|
pass.SetBindGroup(0, bindGroup);
|
|
pass.DispatchWorkgroups(kInstances);
|
|
pass.End();
|
|
|
|
commands = encoder.Finish();
|
|
}
|
|
|
|
queue.Submit(1, &commands);
|
|
|
|
EXPECT_BUFFER_U32_RANGE_EQ(expected.data(), dst, 0, kNumUints);
|
|
}
|
|
|
|
// Test that a trivial compute-shader memcpy implementation works.
|
|
TEST_P(ComputeCopyStorageBufferTests, SizedArrayOfBasic) {
|
|
BasicTest(R"(
|
|
struct Buf {
|
|
s : array<vec4u, 4>
|
|
}
|
|
|
|
@group(0) @binding(0) var<storage, read_write> src : Buf;
|
|
@group(0) @binding(1) var<storage, read_write> dst : Buf;
|
|
|
|
@compute @workgroup_size(1)
|
|
fn main(@builtin(global_invocation_id) GlobalInvocationID : vec3u) {
|
|
let index : u32 = GlobalInvocationID.x;
|
|
if (index >= 4u) { return; }
|
|
dst.s[index] = src.s[index];
|
|
})");
|
|
}
|
|
|
|
// Test that a slightly-less-trivial compute-shader memcpy implementation works.
|
|
TEST_P(ComputeCopyStorageBufferTests, SizedArrayOfStruct) {
|
|
BasicTest(R"(
|
|
struct S {
|
|
a : vec2u,
|
|
b : vec2u,
|
|
}
|
|
|
|
struct Buf {
|
|
s : array<S, 4>
|
|
}
|
|
|
|
@group(0) @binding(0) var<storage, read_write> src : Buf;
|
|
@group(0) @binding(1) var<storage, read_write> dst : Buf;
|
|
|
|
@compute @workgroup_size(1)
|
|
fn main(@builtin(global_invocation_id) GlobalInvocationID : vec3u) {
|
|
let index : u32 = GlobalInvocationID.x;
|
|
if (index >= 4u) { return; }
|
|
dst.s[index] = src.s[index];
|
|
})");
|
|
}
|
|
|
|
// Test that a trivial compute-shader memcpy implementation works.
|
|
TEST_P(ComputeCopyStorageBufferTests, UnsizedArrayOfBasic) {
|
|
BasicTest(R"(
|
|
struct Buf {
|
|
s : array<vec4u>
|
|
}
|
|
|
|
@group(0) @binding(0) var<storage, read_write> src : Buf;
|
|
@group(0) @binding(1) var<storage, read_write> dst : Buf;
|
|
|
|
@compute @workgroup_size(1)
|
|
fn main(@builtin(global_invocation_id) GlobalInvocationID : vec3u) {
|
|
let index : u32 = GlobalInvocationID.x;
|
|
if (index >= 4u) { return; }
|
|
dst.s[index] = src.s[index];
|
|
})");
|
|
}
|
|
|
|
DAWN_INSTANTIATE_TEST(ComputeCopyStorageBufferTests,
|
|
D3D11Backend(),
|
|
D3D12Backend(),
|
|
MetalBackend(),
|
|
OpenGLBackend(),
|
|
OpenGLESBackend(),
|
|
VulkanBackend());
|
|
|
|
} // anonymous namespace
|
|
} // namespace dawn
|