use core::ffi::c_void;
use core::marker::PhantomData;
use baracuda_cutlass::{Error, Result};
use baracuda_driver::Stream;
use baracuda_kernels_types::{
ArchSku, BackendKind, Element, ElementKind, KernelSku, MathPrecision, OpCategory,
PlanPreference, PrecisionGuarantee, ShapeLayoutKind, TensorMut, TensorRef, Workspace,
};
#[derive(Copy, Clone, Debug)]
pub struct FlipDescriptor<const N: usize> {
pub shape: [i32; N],
pub flip_axes: [bool; N],
pub element: ElementKind,
}
pub struct FlipArgs<'a, T: Element, const N: usize> {
pub x: TensorRef<'a, T, N>,
pub y: TensorMut<'a, T, N>,
}
pub struct FlipPlan<T: Element, const N: usize> {
desc: FlipDescriptor<N>,
sku: KernelSku,
_marker: PhantomData<T>,
}
impl<T: Element, const N: usize> FlipPlan<T, N> {
pub fn select(
_stream: &Stream,
desc: &FlipDescriptor<N>,
_pref: PlanPreference,
) -> Result<Self> {
if desc.element != T::KIND {
return Err(Error::Unsupported(
"baracuda-kernels::FlipPlan: descriptor element != type parameter T",
));
}
for &d in desc.shape.iter() {
if d < 0 {
return Err(Error::InvalidProblem(
"baracuda-kernels::FlipPlan: shape dims must be non-negative",
));
}
}
let supported = matches!(
T::KIND,
ElementKind::F32 | ElementKind::F16 | ElementKind::Bf16 | ElementKind::F64
);
if !supported {
return Err(Error::Unsupported(
"baracuda-kernels::FlipPlan: today only `f32`, `f16`, `bf16`, `f64` \
are wired; other dtypes land in future fanout",
));
}
let precision_guarantee = PrecisionGuarantee {
math_precision: MathPrecision::F32,
accumulator: ElementKind::F32,
bit_stable_on_same_hardware: true,
deterministic: true,
};
let sku = KernelSku {
category: OpCategory::ShapeLayout,
op: ShapeLayoutKind::Flip as u16,
element: T::KIND,
aux_element: None,
layout: None,
epilogue: None,
arch: ArchSku::Sm80,
backend: BackendKind::Bespoke,
precision_guarantee,
};
Ok(Self {
desc: *desc,
sku,
_marker: PhantomData,
})
}
pub fn can_implement(&self, args: &FlipArgs<'_, T, N>) -> Result<()> {
if args.x.shape != self.desc.shape {
return Err(Error::InvalidProblem(
"baracuda-kernels::FlipPlan: X shape mismatch with descriptor",
));
}
if args.y.shape != self.desc.shape {
return Err(Error::InvalidProblem(
"baracuda-kernels::FlipPlan: Y shape mismatch with descriptor",
));
}
if N > 8 {
return Err(Error::Unsupported(
"baracuda-kernels::FlipPlan: tensor rank > 8 not supported",
));
}
let numel = args.y.numel();
let x_len = args.x.data.len() as i64;
let y_len = args.y.data.len() as i64;
if x_len < numel || y_len < numel {
return Err(Error::BufferTooSmall {
needed: numel as usize,
got: x_len.min(y_len) as usize,
});
}
Ok(())
}
#[inline]
pub fn workspace_size(&self) -> usize {
0
}
#[inline]
pub fn sku(&self) -> KernelSku {
self.sku
}
#[inline]
pub fn precision_guarantee(&self) -> PrecisionGuarantee {
self.sku.precision_guarantee
}
pub fn run(
&self,
stream: &Stream,
_workspace: Workspace<'_>,
args: FlipArgs<'_, T, N>,
) -> Result<()> {
self.can_implement(&args)?;
let numel = args.y.numel();
if numel == 0 {
return Ok(());
}
let x_ptr = args.x.data.as_raw().0 as *const c_void;
let y_ptr = args.y.data.as_raw().0 as *mut c_void;
let stream_ptr = stream.as_raw() as *mut c_void;
let mut flip_axes_i32 = [0i32; 8];
for d in 0..N {
flip_axes_i32[d] = if self.desc.flip_axes[d] { 1 } else { 0 };
}
let shape = self.desc.shape;
let stride_x = args.x.stride;
let stride_y = args.y.stride;
let rank = N as i32;
let status = match T::KIND {
ElementKind::F32 => unsafe {
baracuda_kernels_sys::baracuda_kernels_flip_f32_run(
numel,
rank,
shape.as_ptr(),
flip_axes_i32.as_ptr(),
stride_x.as_ptr(),
stride_y.as_ptr(),
x_ptr,
y_ptr,
core::ptr::null_mut(),
0,
stream_ptr,
)
},
ElementKind::F16 => unsafe {
baracuda_kernels_sys::baracuda_kernels_flip_f16_run(
numel,
rank,
shape.as_ptr(),
flip_axes_i32.as_ptr(),
stride_x.as_ptr(),
stride_y.as_ptr(),
x_ptr,
y_ptr,
core::ptr::null_mut(),
0,
stream_ptr,
)
},
ElementKind::Bf16 => unsafe {
baracuda_kernels_sys::baracuda_kernels_flip_bf16_run(
numel,
rank,
shape.as_ptr(),
flip_axes_i32.as_ptr(),
stride_x.as_ptr(),
stride_y.as_ptr(),
x_ptr,
y_ptr,
core::ptr::null_mut(),
0,
stream_ptr,
)
},
ElementKind::F64 => unsafe {
baracuda_kernels_sys::baracuda_kernels_flip_f64_run(
numel,
rank,
shape.as_ptr(),
flip_axes_i32.as_ptr(),
stride_x.as_ptr(),
stride_y.as_ptr(),
x_ptr,
y_ptr,
core::ptr::null_mut(),
0,
stream_ptr,
)
},
_ => {
return Err(Error::Unsupported(
"baracuda-kernels::FlipPlan::run: only f32/f16/bf16/f64 wired today",
));
}
};
map_status(status)
}
}
fn map_status(code: i32) -> Result<()> {
match code {
0 => Ok(()),
1 => Err(Error::MisalignedOperand),
2 => Err(Error::InvalidProblem(
"baracuda-kernels-sys reported invalid problem",
)),
3 => Err(Error::Unsupported(
"baracuda-kernels-sys reported unsupported configuration",
)),
4 => Err(Error::WorkspaceTooSmall { needed: 0, got: 0 }),
n => Err(Error::CutlassInternal(n)),
}
}