use burn_backend::cubecl::dtype_to_storage_type;
use burn_backend::ops::ConvOptions;
use burn_std::Shape;
use cubek::{
convolution::{
AcceleratedTileKind, ConvAlgorithm, ConvolutionArgs, ConvolutionInputs, Strategy,
components::ConvSetupError, launch_ref,
},
matmul::definition::{MatmulElems, MatmulGlobalElems},
std::InputBinding,
};
use crate::{CubeRuntime, ops::numeric::empty_device_dtype, tensor::CubeTensor};
pub(crate) fn wgrad_gemm_simple_sync<R: CubeRuntime, const N: usize>(
input: CubeTensor<R>,
out_grad: CubeTensor<R>,
weight_shape: Shape,
options: ConvOptions<N>,
tile_kind: AcceleratedTileKind,
) -> Result<CubeTensor<R>, ConvSetupError> {
let algorithm = match tile_kind {
AcceleratedTileKind::Cmma => ConvAlgorithm::SimpleSyncCyclic,
AcceleratedTileKind::Mma => ConvAlgorithm::SimpleSyncStrided,
};
launch_backwards_weight::<R, N>(
&Strategy::Inferred {
algorithm,
tile_kind,
},
input,
out_grad,
weight_shape,
options,
)
}
pub(crate) fn wgrad_gemm_simple_async<R: CubeRuntime, const N: usize>(
input: CubeTensor<R>,
out_grad: CubeTensor<R>,
weight_shape: Shape,
options: ConvOptions<N>,
tile_kind: AcceleratedTileKind,
) -> Result<CubeTensor<R>, ConvSetupError> {
let algorithm = match tile_kind {
AcceleratedTileKind::Cmma => ConvAlgorithm::SimpleAsyncCyclic,
AcceleratedTileKind::Mma => ConvAlgorithm::SimpleAsyncStrided,
};
launch_backwards_weight::<R, N>(
&Strategy::Inferred {
algorithm,
tile_kind,
},
input,
out_grad,
weight_shape,
options,
)
}
pub(crate) fn wgrad_gemm_simple_tma<R: CubeRuntime, const N: usize>(
input: CubeTensor<R>,
out_grad: CubeTensor<R>,
weight_shape: Shape,
options: ConvOptions<N>,
tile_kind: AcceleratedTileKind,
) -> Result<CubeTensor<R>, ConvSetupError> {
launch_backwards_weight::<R, N>(
&Strategy::Inferred {
algorithm: ConvAlgorithm::SimpleAsyncTma,
tile_kind,
},
input,
out_grad,
weight_shape,
options,
)
}
pub fn launch_backwards_weight<R: CubeRuntime, const N: usize>(
strategy: &Strategy,
input: CubeTensor<R>,
out_grad: CubeTensor<R>,
weight_shape: Shape,
options: ConvOptions<N>,
) -> Result<CubeTensor<R>, ConvSetupError> {
if options.groups != 1 {
return Err(ConvSetupError::Groups(options.groups));
}
let out_dtype = out_grad.dtype;
let weight_grad = empty_device_dtype(
input.client.clone(),
input.device.clone(),
weight_shape,
out_dtype,
);
let client = input.client.clone();
let dtypes = MatmulElems::from_globals(&MatmulGlobalElems {
lhs: dtype_to_storage_type(input.dtype),
rhs: dtype_to_storage_type(out_grad.dtype),
out: dtype_to_storage_type(out_dtype),
});
let input_dtype = input.dtype;
let out_grad_dtype = out_grad.dtype;
let input = InputBinding::new(input.binding(), dtype_to_storage_type(input_dtype));
let out_grad = InputBinding::new(out_grad.binding(), dtype_to_storage_type(out_grad_dtype));
launch_ref::<R, N>(
strategy,
&client,
ConvolutionInputs::BackwardWeight {
input,
out_grad,
weight_grad: weight_grad.clone().binding(),
},
ConvolutionArgs {
stride: options.stride,
padding: options.padding,
dilation: options.dilation,
},
dtypes,
)?;
Ok(weight_grad)
}