Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestOutputNOp (0.1 sec)

  1. tensorflow/compiler/mlir/tfr/resources/test_ops.cc

        .Attr("N: int >= 1")
        .Attr("T: numbertype");
    
    REGISTER_OP("TestInputNOp")
        .Input("input: N * T")
        .Output("output: T")
        .Attr("N: int >= 1")
        .Attr("T: numbertype");
    
    REGISTER_OP("TestOutputNOp")
        .Input("input: T")
        .Output("output: N * T")
        .Attr("N: int >= 1")
        .Attr("T: numbertype");
    
    REGISTER_OP("TestTwoInputsOp")
        .Input("lhs: T")
        .Input("rhs: T")
        .Output("output: T")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 07 23:35:35 UTC 2020
    - 2.3K bytes
    - Viewed (0)
Back to top