burn_cubecl/ops/
activation_ops.rs

1use crate::{CubeBackend, CubeRuntime, FloatElement, IntElement, element::BoolElement};
2use burn_tensor::ops::ActivationOps;
3
4impl<R, F, I, BT> ActivationOps<Self> for CubeBackend<R, F, I, BT>
5where
6    R: CubeRuntime,
7    F: FloatElement,
8    I: IntElement,
9    BT: BoolElement,
10{
11}