2023-03-05 18:56:35 +00:00
|
|
|
// This example demonstrates how to use the standard and relative include directives within shader
|
|
|
|
// source code. The boilerplate is taken from the "basic-compute-shader.rs" example, where most of
|
|
|
|
// the boilerplate is explained.
|
2018-11-30 02:09:13 +00:00
|
|
|
|
2023-09-03 11:09:07 +00:00
|
|
|
use std::sync::Arc;
|
2022-03-06 19:30:49 +00:00
|
|
|
use vulkano::{
|
2023-04-02 13:07:16 +00:00
|
|
|
buffer::{Buffer, BufferCreateInfo, BufferUsage},
|
2022-10-05 09:09:26 +00:00
|
|
|
command_buffer::{
|
2024-10-19 12:13:15 +00:00
|
|
|
allocator::StandardCommandBufferAllocator, AutoCommandBufferBuilder, CommandBufferUsage,
|
2022-10-05 09:09:26 +00:00
|
|
|
},
|
|
|
|
descriptor_set::{
|
2023-11-12 16:17:37 +00:00
|
|
|
allocator::StandardDescriptorSetAllocator, DescriptorSet, WriteDescriptorSet,
|
2022-10-05 09:09:26 +00:00
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
device::{
|
2022-09-10 06:00:08 +00:00
|
|
|
physical::PhysicalDeviceType, Device, DeviceCreateInfo, DeviceExtensions, QueueCreateInfo,
|
2022-11-05 05:02:28 +00:00
|
|
|
QueueFlags,
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
2023-06-17 20:18:48 +00:00
|
|
|
instance::{Instance, InstanceCreateFlags, InstanceCreateInfo},
|
2023-07-19 09:11:17 +00:00
|
|
|
memory::allocator::{AllocationCreateInfo, MemoryTypeFilter, StandardMemoryAllocator},
|
2023-04-22 18:46:22 +00:00
|
|
|
pipeline::{
|
|
|
|
compute::ComputePipelineCreateInfo, layout::PipelineDescriptorSetLayoutCreateInfo,
|
|
|
|
ComputePipeline, Pipeline, PipelineBindPoint, PipelineLayout,
|
2023-06-25 18:08:27 +00:00
|
|
|
PipelineShaderStageCreateInfo,
|
2023-04-22 18:46:22 +00:00
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
sync::{self, GpuFuture},
|
2022-07-30 06:53:52 +00:00
|
|
|
VulkanLibrary,
|
2022-03-06 19:30:49 +00:00
|
|
|
};
|
2018-11-30 02:09:13 +00:00
|
|
|
|
|
|
|
fn main() {
|
2022-07-30 06:53:52 +00:00
|
|
|
let library = VulkanLibrary::new().unwrap();
|
|
|
|
let instance = Instance::new(
|
|
|
|
library,
|
|
|
|
InstanceCreateInfo {
|
2023-06-17 20:18:48 +00:00
|
|
|
flags: InstanceCreateFlags::ENUMERATE_PORTABILITY,
|
2022-07-30 06:53:52 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
2022-07-18 13:11:43 +00:00
|
|
|
.unwrap();
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let device_extensions = DeviceExtensions {
|
|
|
|
khr_storage_buffer_storage_class: true,
|
2022-09-05 20:16:40 +00:00
|
|
|
..DeviceExtensions::empty()
|
2020-01-23 07:37:12 +00:00
|
|
|
};
|
2022-09-10 06:00:08 +00:00
|
|
|
let (physical_device, queue_family_index) = instance
|
|
|
|
.enumerate_physical_devices()
|
|
|
|
.unwrap()
|
|
|
|
.filter(|p| p.supported_extensions().contains(&device_extensions))
|
2021-06-28 06:24:44 +00:00
|
|
|
.filter_map(|p| {
|
2022-09-10 06:00:08 +00:00
|
|
|
p.queue_family_properties()
|
|
|
|
.iter()
|
2022-11-05 05:02:28 +00:00
|
|
|
.position(|q| q.queue_flags.intersects(QueueFlags::COMPUTE))
|
2022-09-10 06:00:08 +00:00
|
|
|
.map(|i| (p, i as u32))
|
2021-06-28 06:24:44 +00:00
|
|
|
})
|
2021-08-09 13:44:58 +00:00
|
|
|
.min_by_key(|(p, _)| match p.properties().device_type {
|
2021-06-28 06:24:44 +00:00
|
|
|
PhysicalDeviceType::DiscreteGpu => 0,
|
|
|
|
PhysicalDeviceType::IntegratedGpu => 1,
|
|
|
|
PhysicalDeviceType::VirtualGpu => 2,
|
|
|
|
PhysicalDeviceType::Cpu => 3,
|
|
|
|
PhysicalDeviceType::Other => 4,
|
2022-09-05 20:16:40 +00:00
|
|
|
_ => 5,
|
2021-06-28 06:24:44 +00:00
|
|
|
})
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
println!(
|
|
|
|
"Using device: {} (type: {:?})",
|
2021-08-09 13:44:58 +00:00
|
|
|
physical_device.properties().device_name,
|
2023-03-05 18:56:35 +00:00
|
|
|
physical_device.properties().device_type,
|
2021-06-28 06:24:44 +00:00
|
|
|
);
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let (device, mut queues) = Device::new(
|
2021-06-28 06:24:44 +00:00
|
|
|
physical_device,
|
2022-02-14 09:32:27 +00:00
|
|
|
DeviceCreateInfo {
|
2022-07-18 13:11:43 +00:00
|
|
|
enabled_extensions: device_extensions,
|
2022-09-10 06:00:08 +00:00
|
|
|
queue_create_infos: vec![QueueCreateInfo {
|
|
|
|
queue_family_index,
|
|
|
|
..Default::default()
|
|
|
|
}],
|
2022-02-14 09:32:27 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
2020-05-10 00:36:20 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-01-23 07:37:12 +00:00
|
|
|
let queue = queues.next().unwrap();
|
2019-10-23 08:04:49 +00:00
|
|
|
|
2021-11-02 20:33:58 +00:00
|
|
|
let pipeline = {
|
2020-01-23 07:37:12 +00:00
|
|
|
mod cs {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
|
|
|
ty: "compute",
|
|
|
|
// We declare what directories to search for when using the `#include <...>`
|
|
|
|
// syntax. Specified directories have descending priorities based on their order.
|
2023-10-29 17:46:14 +00:00
|
|
|
include: ["standard-shaders"],
|
2023-03-05 18:56:35 +00:00
|
|
|
src: r#"
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
2023-03-05 18:56:35 +00:00
|
|
|
|
|
|
|
// Substitutes this line with the contents of the file `common.glsl` found in
|
|
|
|
// one of the standard `include` directories specified above.
|
|
|
|
// Note that relative inclusion (`#include "..."`), although it falls back to
|
|
|
|
// standard inclusion, should not be used for **embedded** shader source, as it
|
|
|
|
// may be misleading and/or confusing.
|
2020-01-23 07:37:12 +00:00
|
|
|
#include <common.glsl>
|
2019-10-23 08:04:49 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
layout(local_size_x = 64, local_size_y = 1, local_size_z = 1) in;
|
2019-10-23 08:04:49 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
layout(set = 0, binding = 0) buffer Data {
|
|
|
|
uint data[];
|
2023-03-05 18:56:35 +00:00
|
|
|
};
|
2019-10-23 08:04:49 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
void main() {
|
|
|
|
uint idx = gl_GlobalInvocationID.x;
|
2023-03-05 18:56:35 +00:00
|
|
|
data[idx] = multiply_by_12(data[idx]);
|
2020-01-23 07:37:12 +00:00
|
|
|
}
|
2023-03-05 18:56:35 +00:00
|
|
|
"#,
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-22 18:46:22 +00:00
|
|
|
|
|
|
|
let cs = cs::load(device.clone())
|
2023-04-18 18:53:08 +00:00
|
|
|
.unwrap()
|
|
|
|
.entry_point("main")
|
|
|
|
.unwrap();
|
2023-06-25 18:08:27 +00:00
|
|
|
let stage = PipelineShaderStageCreateInfo::new(cs);
|
2023-04-22 18:46:22 +00:00
|
|
|
let layout = PipelineLayout::new(
|
|
|
|
device.clone(),
|
|
|
|
PipelineDescriptorSetLayoutCreateInfo::from_stages([&stage])
|
|
|
|
.into_pipeline_layout_create_info(device.clone())
|
|
|
|
.unwrap(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-09-04 04:20:05 +00:00
|
|
|
ComputePipeline::new(
|
|
|
|
device.clone(),
|
|
|
|
None,
|
2023-04-22 18:46:22 +00:00
|
|
|
ComputePipelineCreateInfo::stage_layout(stage, layout),
|
2021-09-04 04:20:05 +00:00
|
|
|
)
|
|
|
|
.unwrap()
|
2021-11-02 20:33:58 +00:00
|
|
|
};
|
2019-10-23 08:04:49 +00:00
|
|
|
|
2023-09-03 11:09:07 +00:00
|
|
|
let memory_allocator = Arc::new(StandardMemoryAllocator::new_default(device.clone()));
|
2023-11-12 14:10:22 +00:00
|
|
|
let descriptor_set_allocator = Arc::new(StandardDescriptorSetAllocator::new(
|
|
|
|
device.clone(),
|
|
|
|
Default::default(),
|
|
|
|
));
|
2023-11-14 16:57:43 +00:00
|
|
|
let command_buffer_allocator = Arc::new(StandardCommandBufferAllocator::new(
|
|
|
|
device.clone(),
|
|
|
|
Default::default(),
|
|
|
|
));
|
2022-10-05 09:09:26 +00:00
|
|
|
|
2023-07-19 09:11:17 +00:00
|
|
|
let data_buffer = Buffer::from_iter(
|
2023-09-03 11:09:07 +00:00
|
|
|
memory_allocator,
|
2023-07-19 09:11:17 +00:00
|
|
|
BufferCreateInfo {
|
|
|
|
usage: BufferUsage::STORAGE_BUFFER,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
AllocationCreateInfo {
|
|
|
|
memory_type_filter: MemoryTypeFilter::PREFER_DEVICE
|
|
|
|
| MemoryTypeFilter::HOST_RANDOM_ACCESS,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
0..65536u32,
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-09-02 08:29:27 +00:00
|
|
|
|
2023-12-28 19:32:13 +00:00
|
|
|
let layout = &pipeline.layout().set_layouts()[0];
|
2023-11-12 16:17:37 +00:00
|
|
|
let set = DescriptorSet::new(
|
2023-11-12 14:10:22 +00:00
|
|
|
descriptor_set_allocator,
|
2021-12-18 10:32:38 +00:00
|
|
|
layout.clone(),
|
|
|
|
[WriteDescriptorSet::buffer(0, data_buffer.clone())],
|
2023-06-03 12:56:27 +00:00
|
|
|
[],
|
2021-12-18 10:32:38 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2021-09-02 08:29:27 +00:00
|
|
|
|
2024-10-19 12:13:15 +00:00
|
|
|
let mut builder = AutoCommandBufferBuilder::primary(
|
2023-11-14 16:57:43 +00:00
|
|
|
command_buffer_allocator,
|
2022-09-10 06:00:08 +00:00
|
|
|
queue.queue_family_index(),
|
2024-10-18 18:00:21 +00:00
|
|
|
CommandBufferUsage::OneTimeSubmit,
|
2021-04-26 14:53:18 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2023-12-25 03:01:16 +00:00
|
|
|
|
2020-06-01 14:41:42 +00:00
|
|
|
builder
|
2021-08-27 06:24:16 +00:00
|
|
|
.bind_pipeline_compute(pipeline.clone())
|
2023-08-04 18:55:16 +00:00
|
|
|
.unwrap()
|
2021-08-27 06:24:16 +00:00
|
|
|
.bind_descriptor_sets(
|
|
|
|
PipelineBindPoint::Compute,
|
|
|
|
pipeline.layout().clone(),
|
|
|
|
0,
|
2022-08-12 10:18:35 +00:00
|
|
|
set,
|
2021-08-27 06:24:16 +00:00
|
|
|
)
|
2020-06-01 14:41:42 +00:00
|
|
|
.unwrap();
|
2024-10-23 10:07:00 +00:00
|
|
|
unsafe { builder.dispatch([1024, 1, 1]) }.unwrap();
|
2023-12-25 03:01:16 +00:00
|
|
|
|
2024-10-19 12:13:15 +00:00
|
|
|
let command_buffer = builder.build().unwrap();
|
2022-08-12 10:18:35 +00:00
|
|
|
let future = sync::now(device)
|
|
|
|
.then_execute(queue, command_buffer)
|
2020-05-10 00:36:20 +00:00
|
|
|
.unwrap()
|
|
|
|
.then_signal_fence_and_flush()
|
|
|
|
.unwrap();
|
2019-10-23 08:04:49 +00:00
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
future.wait(None).unwrap();
|
2019-10-23 08:04:49 +00:00
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let data_buffer_content = data_buffer.read().unwrap();
|
|
|
|
for n in 0..65536u32 {
|
|
|
|
assert_eq!(data_buffer_content[n as usize], n * 12);
|
|
|
|
}
|
2022-09-17 15:37:22 +00:00
|
|
|
|
|
|
|
println!("Success");
|
2018-11-30 02:09:13 +00:00
|
|
|
}
|