onednnl 0.0.1

high-level bindings to oneDNN Deep Learning library
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::graph::{
    op::{OneDNNGraphOp, OneDNNGraphOpType},
    spec::OpSpec,
};

pub struct AbsSpec;

impl OpSpec for AbsSpec {
    const KIND: OneDNNGraphOpType = OneDNNGraphOp::ABS;
}