Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for elu (0.03 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK-LABEL:cos
    // CHECK:  "tfl.cos"(%arg0) : (tensor<f32>) -> tensor<f32>
    }
    
    func.func @elu(%arg0: tensor<11x16xf32>) -> tensor<11x16xf32> {
      %0 = "tf.Elu"(%arg0) : (tensor<11x16xf32>) -> tensor<11x16xf32>
      func.return %0 : tensor<11x16xf32>
    
    // CHECK-LABEL:elu
    // CHECK:  "tfl.elu"(%arg0) : (tensor<11x16xf32>) -> tensor<11x16xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<? x i32>
    }
    
    // -----
    
    // CHECK-LABEL: testEluF32
    func.func @testEluF32(%arg0: tensor<? x f32>) -> tensor<? x f32> {
      // CHECK: "tfl.elu"(%arg0)
      %0 = "tfl.elu"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0#0 : tensor<? x f32>
    }
    
    // -----
    
    // CHECK-LABEL: testTileF32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        void $cppClass::print(OpAsmPrinter &p) {
          return printOneResultOp(getOperation(), p);
        }
      }];
    
      let hasOptions = 1;
    
      let hasFolder = 1;
    }
    
    def TFL_EluOp: TFL_Op<"elu", [
        Pure,
        SameOperandsAndResultShape,
        TFL_SameFirstOperandAndFirstResultElementType]> {
      let summary = "Exponential Linear Unit operator";
      let description = [{
        Computes the exponential linear
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top