use std::sync::{Arc, Mutex};
use sim_kernel::{
AbiVersion, CapabilityName, DefaultFactory, Export, Factory, Lib, LibManifest, LibTarget,
Linker, Result, Symbol, Version,
};
use sim_lib_numbers_tensor::{
SubmissionEvidence, TensorExecError, TensorExecution, TensorExecutor, TensorExecutorCard,
TensorRequest, TensorSite, domains,
};
use crate::{
WgpuAdapterProbe, WgpuDiscovery, WgpuKernelDType, WgpuPipelineCache, WgpuQueueLimits,
WgpuResidentArena, WgpuResidentStorage, WgpuSegmentPlan, WgpuTileProfile,
discover_wgpu_adapters,
kernels::{execute_portable_kernel, kernel_op},
};
pub fn compute_wgpu_lib_symbol() -> Symbol {
Symbol::qualified("compute", "wgpu-lib")
}
pub fn wgpu_executor_symbol(ordinal: usize) -> Symbol {
Symbol::qualified("compute", format!("executor/wgpu/{ordinal}"))
}
pub fn compute_wgpu_site_symbol(ordinal: usize) -> Symbol {
Symbol::new(format!("site/compute/wgpu/{ordinal}"))
}
pub fn compute_wgpu_capability() -> CapabilityName {
CapabilityName::new("device.gpu.wgpu")
}
#[derive(Clone)]
pub struct WgpuTensorExecutor {
probe: WgpuAdapterProbe,
state: Arc<Mutex<WgpuExecutorState>>,
}
#[derive(Debug)]
struct WgpuExecutorState {
pipelines: WgpuPipelineCache,
arena: WgpuResidentArena,
queued: usize,
queued_bytes: u64,
accepted: usize,
}
impl WgpuTensorExecutor {
pub fn new(probe: WgpuAdapterProbe) -> Self {
let arena_bytes = probe.adapter.granted_limits.max_buffer_size.max(4);
Self {
probe,
state: Arc::new(Mutex::new(WgpuExecutorState {
pipelines: WgpuPipelineCache::default(),
arena: WgpuResidentArena::new(arena_bytes),
queued: 0,
queued_bytes: 0,
accepted: 0,
})),
}
}
pub fn probe(&self) -> &WgpuAdapterProbe {
&self.probe
}
pub fn pipeline_cache_snapshot(&self) -> crate::WgpuPipelineCacheSnapshot {
self.state
.lock()
.expect("wgpu executor state poisoned")
.pipelines
.snapshot()
}
fn dtype_for(
&self,
request: &TensorRequest,
) -> std::result::Result<WgpuKernelDType, TensorExecError> {
let dtype = request.output.dtype();
if dtype == &domains::f32() || dtype == &domains::f64() {
Ok(WgpuKernelDType::F32)
} else if dtype == &domains::f16() {
if self.probe.adapter.granted_features.shader_f16 {
Ok(WgpuKernelDType::F16Native)
} else {
Ok(WgpuKernelDType::Bf16WidenedToF32)
}
} else if dtype == &domains::bf16() {
Ok(WgpuKernelDType::Bf16WidenedToF32)
} else {
Err(unsupported(
request.operation.symbol.clone(),
"wgpu portable kernels accept f32/f64/half-family tensor dtypes",
))
}
}
fn prepare_inputs(&self, request: TensorRequest) -> TensorRequest {
let inputs = request
.inputs
.iter()
.map(|tensor| {
tensor
.storage()
.as_any()
.downcast_ref::<WgpuResidentStorage>()
.and_then(WgpuResidentStorage::resident_tensor)
.unwrap_or_else(|| tensor.clone())
})
.collect();
TensorRequest::new(request.operation, inputs, request.output)
}
}
impl TensorExecutor for WgpuTensorExecutor {
fn card(&self) -> TensorExecutorCard {
TensorExecutorCard::new(
wgpu_executor_symbol(self.probe.adapter.ordinal),
format!(
"wgpu/{}/{}",
self.probe.adapter.backend, self.probe.adapter.name
),
Symbol::qualified("compute", "wgpu"),
vec![
sim_lib_numbers_tensor::add_op_symbol(),
sim_lib_numbers_tensor::sub_op_symbol(),
sim_lib_numbers_tensor::mul_op_symbol(),
sim_lib_numbers_tensor::div_op_symbol(),
sim_lib_numbers_tensor::sqrt_op_symbol(),
sim_lib_numbers_tensor::exp_op_symbol(),
sim_lib_numbers_tensor::sin_op_symbol(),
sim_lib_numbers_tensor::cos_op_symbol(),
sim_lib_numbers_tensor::sum_op_symbol(),
sim_lib_numbers_tensor::min_op_symbol(),
sim_lib_numbers_tensor::max_op_symbol(),
sim_lib_numbers_tensor::norm_op_symbol(),
sim_lib_numbers_tensor::transpose_exec_op_symbol(),
sim_lib_numbers_tensor::dot_op_symbol(),
sim_lib_numbers_tensor::matmul_exec_op_symbol(),
],
Some(compute_wgpu_capability()),
)
}
fn execute(
&self,
cx: &mut sim_kernel::Cx,
request: TensorRequest,
) -> std::result::Result<TensorExecution, TensorExecError> {
let Some(op) = kernel_op(&request.operation.symbol) else {
return Ok(TensorExecution::Unsupported {
reason: Arc::from("operation is outside the portable wgpu kernel set"),
});
};
let dtype = self.dtype_for(&request)?;
let request = self.prepare_inputs(request);
let tensor = execute_portable_kernel(cx, &request, dtype)?;
let bytes = tensor_bytes(tensor.shape())?;
let boundary = self
.probe
.adapter
.granted_limits
.max_storage_buffer_binding_size
.max(4);
let segments = WgpuSegmentPlan::new(bytes, boundary, boundary);
let pipeline = {
let mut state = self.state.lock().expect("wgpu executor state poisoned");
let tile = WgpuTileProfile::from_probe(&self.probe);
let limits = WgpuQueueLimits {
max_nodes: 64,
max_bytes: tile.max_dispatch_bytes,
deadline_tick: u64::MAX,
};
if state.queued >= limits.max_nodes {
return Err(invalid("wgpu submission queue node limit reached"));
}
if state.queued_bytes.saturating_add(bytes) > limits.max_bytes {
return Err(invalid("wgpu submission queue byte limit reached"));
}
let allocation = state.arena.allocate(bytes.max(4)).map_err(invalid)?;
state.queued += 1;
state.queued_bytes += bytes;
state.accepted += 1;
let pipeline =
state
.pipelines
.get_or_insert(&self.probe, op, dtype, tensor.shape().len());
(allocation, pipeline.symbol)
};
let cells = tensor.cells().map_err(TensorExecError::from)?;
let storage = WgpuResidentStorage::new(
compute_wgpu_site_symbol(self.probe.adapter.ordinal),
pipeline.0,
pipeline.1,
segments.segments,
tensor.shape().to_vec(),
tensor.dtype().clone(),
cells,
);
Ok(TensorExecution::Complete(
sim_lib_numbers_tensor::Tensor::from_storage(
tensor.shape().to_vec(),
tensor.dtype().clone(),
Arc::new(storage),
)?,
))
}
fn flush(&self) -> std::result::Result<SubmissionEvidence, TensorExecError> {
let mut state = self.state.lock().expect("wgpu executor state poisoned");
let accepted = state.queued;
state.queued = 0;
state.queued_bytes = 0;
Ok(SubmissionEvidence::new(
wgpu_executor_symbol(self.probe.adapter.ordinal),
accepted,
))
}
}
fn tensor_bytes(shape: &[usize]) -> std::result::Result<u64, TensorExecError> {
let cells = shape.iter().try_fold(1_u64, |count, extent| {
count
.checked_mul(
u64::try_from(*extent).map_err(|_| invalid("wgpu tensor extent exceeds u64"))?,
)
.ok_or_else(|| invalid("wgpu tensor byte count overflowed"))
})?;
cells
.checked_mul(4)
.ok_or_else(|| invalid("wgpu tensor byte count overflowed"))
}
fn invalid(message: impl Into<Arc<str>>) -> TensorExecError {
TensorExecError::InvalidRequest {
message: message.into(),
}
}
fn unsupported(operation: Symbol, reason: impl Into<Arc<str>>) -> TensorExecError {
TensorExecError::Unsupported {
operation,
reason: reason.into(),
}
}
#[derive(Clone, Debug, Default)]
pub struct ComputeWgpuLib {
discovery: WgpuDiscovery,
}
impl ComputeWgpuLib {
pub fn probe() -> Result<Self> {
let discovery = discover_wgpu_adapters(&Default::default())
.map_err(|err| sim_kernel::Error::Eval(err.to_string()))?;
Ok(Self { discovery })
}
pub fn from_discovery(discovery: WgpuDiscovery) -> Self {
Self { discovery }
}
pub fn discovery(&self) -> &WgpuDiscovery {
&self.discovery
}
}
impl Lib for ComputeWgpuLib {
fn manifest(&self) -> LibManifest {
LibManifest {
id: compute_wgpu_lib_symbol(),
version: Version(env!("CARGO_PKG_VERSION").to_owned()),
abi: AbiVersion { major: 0, minor: 1 },
target: LibTarget::HostRegistered,
requires: Vec::new(),
capabilities: vec![compute_wgpu_capability()],
exports: self
.discovery
.adapters
.iter()
.map(|probe| Export::Site {
symbol: compute_wgpu_site_symbol(probe.adapter.ordinal),
runtime_id: None,
})
.collect(),
}
}
fn load(&self, _cx: &mut sim_kernel::LoadCx, linker: &mut Linker<'_>) -> Result<()> {
for probe in &self.discovery.adapters {
let symbol = compute_wgpu_site_symbol(probe.adapter.ordinal);
let executor = Arc::new(WgpuTensorExecutor::new(probe.clone()));
let site = TensorSite::new(symbol.clone(), executor, vec![compute_wgpu_capability()]);
linker.site_value(symbol, DefaultFactory.opaque(Arc::new(site))?)?;
}
Ok(())
}
}