Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BITWISE_XOR (0.99 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    // CHECK-LABEL: testBitwiseXor
    func.func @testBitwiseXor(%arg0: tensor<8xui32>, %arg1: tensor<8xui32>) -> tensor<8xui32> {
      // CHECK: "tfl.bitwise_xor"(%arg0, %arg1)
      %0 = "tfl.bitwise_xor"(%arg0, %arg1) : (tensor<8xui32>, tensor<8xui32>) -> tensor<8xui32>
      func.return %0 : tensor<8xui32>
      // CHECK: return %0 : tensor<8xui32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %0 = "tf.BitwiseXor"(%arg0, %arg1) : (tensor<8xui32>, tensor<8xui32>) -> tensor<8xui32>
      func.return %0 : tensor<8xui32>
    
      // CHECK-LABEL: testBitwiseXor
      // CHECK: %[[RES0:.*]] = "tfl.bitwise_xor"(%arg0, %arg1) : (tensor<8xui32>, tensor<8xui32>) -> tensor<8xui32>
      // CHECK: return %[[RES0]] : tensor<8xui32>
    }
    
    func.func @testRightShift(%arg0: tensor<8xui32>, %arg1: tensor<8xui32>) -> tensor<8xui32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      // from the TfLiteTensors.
      let hasOptions = 0;
    
      let hasFolder = 1;
    
      let hasVerifier = 1;
    }
    
    def TFL_BitwiseXorOp : TFL_Op<"bitwise_xor", [
        Commutative,
        SameOperandsAndResultElementType,
        Pure]> {
      let summary = "Bitwise Xor operator";
    
      let description = [{
        Elementwise computes the bitwise XOR of `lhs` and `rhs`.
    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