1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{
    element::{FloatElement, IntElement},
    GraphicsApi, Wgpu,
};
use burn_tensor::ops::ActivationOps;

impl<G, F, I> ActivationOps<Wgpu<G, F, I>> for Wgpu<G, F, I>
where
    G: GraphicsApi + 'static,
    F: FloatElement,
    I: IntElement,
{
}