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::{
CpuTensorExecutor, SubmissionEvidence, Tensor, TensorExecError, TensorExecution,
TensorExecutor, TensorExecutorCard, TensorRequest, TensorSite, domains, matmul_exec_op_symbol,
parse_f32_literal_cell,
};
use crate::{
CudaAbiEvidence, CudaAllocation, CudaLibrarySet, CudaLoadError, CudaResidentStorage,
CudaRuntimeProbe, DynamicCudaLoader, discover_cuda_runtime, runtime::CudaDeviceBuffer,
};
pub fn compute_cuda_lib_symbol() -> Symbol {
Symbol::qualified("compute", "cuda-lib")
}
pub fn cuda_executor_symbol() -> Symbol {
Symbol::qualified("compute", "executor/cuda")
}
pub fn compute_cuda_site_symbol() -> Symbol {
Symbol::new("site/compute/cuda")
}
pub fn compute_cuda_capability() -> CapabilityName {
CapabilityName::new("device.gpu.cuda")
}
#[derive(Clone, Debug, Default, PartialEq, Eq)]
struct CudaExecutorState {
accepted: usize,
queued: usize,
next_allocation: usize,
}
#[derive(Clone)]
pub struct CudaTensorExecutor {
evidence: CudaAbiEvidence,
runtime: Option<Arc<CudaLibrarySet>>,
state: Arc<Mutex<CudaExecutorState>>,
}
impl CudaTensorExecutor {
pub fn new(evidence: CudaAbiEvidence) -> Self {
Self {
evidence,
runtime: None,
state: Arc::new(Mutex::new(CudaExecutorState::default())),
}
}
pub fn from_runtime(runtime: Arc<CudaLibrarySet>) -> Self {
Self {
evidence: runtime.evidence().clone(),
runtime: Some(runtime),
state: Arc::new(Mutex::new(CudaExecutorState::default())),
}
}
pub fn evidence(&self) -> &CudaAbiEvidence {
&self.evidence
}
fn dtype_supported(&self, dtype: &Symbol) -> bool {
dtype == &domains::f32()
}
fn reserve_allocation(
&self,
shape: &[usize],
operation: Symbol,
) -> std::result::Result<CudaAllocation, TensorExecError> {
let bytes = tensor_bytes(shape)?;
let mut state = self.state.lock().expect("cuda executor state poisoned");
state.accepted += 1;
state.queued += 1;
state.next_allocation += 1;
Ok(CudaAllocation {
id: state.next_allocation,
bytes,
operation,
})
}
fn execute_runtime(
&self,
runtime: &Arc<CudaLibrarySet>,
request: &TensorRequest,
allocation: CudaAllocation,
) -> std::result::Result<TensorExecution, TensorExecError> {
let [left, right] = request.inputs.as_ref() else {
return Err(invalid("cuda matmul requires two inputs"));
};
let [rows, inner] = left.shape() else {
return Err(invalid("cuda matmul left input must be rank two"));
};
let [right_inner, cols] = right.shape() else {
return Err(invalid("cuda matmul right input must be rank two"));
};
if inner != right_inner || request.output.shape() != [*rows, *cols] {
return Err(invalid("cuda matmul shapes do not conform"));
}
let left = cuda_input(runtime, left)?;
let right = cuda_input(runtime, right)?;
let output = runtime
.matmul(&left, &right, *rows, *inner, *cols)
.map_err(execution_error)?;
let storage = CudaResidentStorage::from_device(
compute_cuda_site_symbol(),
allocation,
request.output.shape().to_vec(),
request.output.dtype().clone(),
output,
);
Ok(TensorExecution::Complete(Tensor::from_storage(
request.output.shape().to_vec(),
request.output.dtype().clone(),
Arc::new(storage),
)?))
}
}
impl TensorExecutor for CudaTensorExecutor {
fn card(&self) -> TensorExecutorCard {
TensorExecutorCard::new(
cuda_executor_symbol(),
"cuda/cublas",
Symbol::qualified("compute", "cuda"),
vec![matmul_exec_op_symbol()],
Some(compute_cuda_capability()),
)
}
fn execute(
&self,
cx: &mut sim_kernel::Cx,
request: TensorRequest,
) -> std::result::Result<TensorExecution, TensorExecError> {
if request.operation.symbol != matmul_exec_op_symbol() {
return Ok(TensorExecution::Unsupported {
reason: Arc::from("cuda provider accepts dense matmul only"),
});
}
if !self.dtype_supported(request.output.dtype()) {
return Ok(TensorExecution::Unsupported {
reason: Arc::from("cuda provider accepts dense f32 matmul"),
});
}
let allocation =
self.reserve_allocation(request.output.shape(), request.operation.symbol.clone())?;
if let Some(runtime) = &self.runtime {
return self.execute_runtime(runtime, &request, allocation);
}
let result = CpuTensorExecutor::new().execute(cx, request)?;
let TensorExecution::Complete(tensor) = result else {
return Ok(result);
};
resident_result(tensor, allocation)
}
fn flush(&self) -> std::result::Result<SubmissionEvidence, TensorExecError> {
let mut state = self.state.lock().expect("cuda executor state poisoned");
let accepted = state.queued;
state.queued = 0;
Ok(SubmissionEvidence::new(cuda_executor_symbol(), accepted))
}
}
fn resident_result(
tensor: Tensor,
allocation: CudaAllocation,
) -> std::result::Result<TensorExecution, TensorExecError> {
let cells = tensor.cells().map_err(TensorExecError::from)?;
let storage = CudaResidentStorage::new(
compute_cuda_site_symbol(),
allocation,
tensor.shape().to_vec(),
tensor.dtype().clone(),
cells,
);
Ok(TensorExecution::Complete(Tensor::from_storage(
tensor.shape().to_vec(),
tensor.dtype().clone(),
Arc::new(storage),
)?))
}
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("cuda extent exceeds u64"))?)
.ok_or_else(|| invalid("cuda tensor byte count overflowed"))
})?;
cells
.checked_mul(4)
.ok_or_else(|| invalid("cuda tensor byte count overflowed"))
}
fn invalid(message: impl Into<Arc<str>>) -> TensorExecError {
TensorExecError::InvalidRequest {
message: message.into(),
}
}
#[derive(Clone, Debug, Default)]
pub struct ComputeCudaLib {
probe: Option<CudaRuntimeProbe>,
}
impl ComputeCudaLib {
pub fn probe() -> std::result::Result<Self, CudaLoadError> {
Ok(Self {
probe: Some(discover_cuda_runtime()?),
})
}
pub fn from_loader(loader: &dyn DynamicCudaLoader) -> std::result::Result<Self, CudaLoadError> {
Ok(Self {
probe: Some(loader.discover()?),
})
}
pub fn from_probe(probe: CudaRuntimeProbe) -> Self {
Self { probe: Some(probe) }
}
pub fn probe_evidence(&self) -> Option<&CudaRuntimeProbe> {
self.probe.as_ref()
}
fn available_runtime(&self) -> Option<Arc<CudaLibrarySet>> {
self.probe
.as_ref()
.and_then(|probe| probe.runtime.clone())
.filter(|runtime| runtime.evidence().is_complete())
}
}
impl Lib for ComputeCudaLib {
fn manifest(&self) -> LibManifest {
LibManifest {
id: compute_cuda_lib_symbol(),
version: Version(env!("CARGO_PKG_VERSION").to_owned()),
abi: AbiVersion { major: 0, minor: 1 },
target: LibTarget::HostRegistered,
requires: Vec::new(),
capabilities: self
.available_runtime()
.map(|_| vec![compute_cuda_capability()])
.unwrap_or_default(),
exports: self
.available_runtime()
.map(|_| {
vec![Export::Site {
symbol: compute_cuda_site_symbol(),
runtime_id: None,
}]
})
.unwrap_or_default(),
}
}
fn load(&self, _cx: &mut sim_kernel::LoadCx, linker: &mut Linker<'_>) -> Result<()> {
let Some(runtime) = self.available_runtime() else {
return Ok(());
};
let executor = Arc::new(CudaTensorExecutor::from_runtime(runtime));
let site = TensorSite::new(
compute_cuda_site_symbol(),
executor,
vec![compute_cuda_capability()],
);
linker.site_value(
compute_cuda_site_symbol(),
DefaultFactory.opaque(Arc::new(site))?,
)?;
Ok(())
}
}
fn cuda_input(
runtime: &Arc<CudaLibrarySet>,
tensor: &Tensor,
) -> std::result::Result<Arc<CudaDeviceBuffer>, TensorExecError> {
if let Some(buffer) = tensor
.storage()
.as_any()
.downcast_ref::<CudaResidentStorage>()
.and_then(CudaResidentStorage::device_buffer)
.filter(|buffer| Arc::ptr_eq(buffer.runtime(), runtime))
{
return Ok(Arc::clone(buffer));
}
let values = tensor
.cells()
.map_err(TensorExecError::from)?
.iter()
.map(|cell| {
parse_f32_literal_cell(cell)
.ok_or_else(|| invalid("cuda matmul input is not canonical f32"))
})
.collect::<std::result::Result<Vec<_>, _>>()?;
runtime.upload(&values).map_err(execution_error)
}
fn execution_error(error: CudaLoadError) -> TensorExecError {
TensorExecError::Eval {
message: Arc::from(error.to_string()),
}
}