Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NOT_EQUAL (0.16 sec)

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

    // CHECK:  tfl.floor_div %arg0, %arg1 : tensor<8x16xi16>
    // CHECK:  return
    }
    
    func.func @not_equal(%arg0: tensor<8x16xf32>, %arg1: tensor<8x16xf32>) -> tensor<8x16xi1> {
      %0 = "tf.NotEqual"(%arg0, %arg1) : (tensor<8x16xf32>, tensor<8x16xf32>) -> tensor<8x16xi1>
      func.return %0 : tensor<8x16xi1>
    
    // CHECK-LABEL: not_equal
    // CHECK:  tfl.not_equal(%arg0, %arg1) : (tensor<8x16xf32>, tensor<8x16xf32>) -> tensor<8x16xi1>
    // CHECK:  return
    }
    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/ir/tfl_ops.td

      );
    }
    
    def TFL_NotEqualOp : TFL_Op<"not_equal", [
        TFL_OperandsHaveSameShapesOrBroadcastableShape<[0, 1], 4>,
        ComparisonOpSameElementTypeConstraint,
        ResultsBroadcastableShape,
        Commutative,
        Pure]> {
      let summary = "Not_equal operator";
    
      let description = [{
        Element-wise not_equal operation.
      }];
    
      let arguments = (
    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