Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for logical_not (0.16 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/contracts/firContractUtils.kt

                LogicOperationKind.OR -> KaContractBinaryLogicExpression.KaLogicOperation.OR
            }
        )
    
        override fun visitLogicalNot(logicalNot: ConeLogicalNot, data: Unit): KaContractLogicalNotExpression =
            KaContractLogicalNotExpression(logicalNot.arg.accept())
    
        override fun visitIsInstancePredicate(isInstancePredicate: ConeIsInstancePredicate, data: Unit): KaContractIsInstancePredicateExpression =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    /// possible.
    /// The function currently asserts that the `result_type` to be a f32 tensor
    /// type.
    /// TODO: Extend this function to handle integral tensor for ops like
    /// "tfl.logical_not".
    Attribute ConstFoldUnaryOp(Type result_type, Attribute operand,
                               llvm::function_ref<APFloat(APFloat)> calculate) {
      assert(IsF32ShapedType(result_type) || IsBF16ShapedType(result_type));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_LogicalNotOp : TFL_Op<"logical_not", [
        Pure,
        SameOperandsAndResultShape]> {
      let summary = "Logical NOT operator";
    
      let description = [{
        Element-wise logical NOT operation.
      }];
    
      let arguments = (ins TFL_BoolTensor:$lhs);
    
      let results = (outs TFL_BoolTensor:$output);
    }
    
    def TFL_LogicalOrOp : TFL_Op<"logical_or", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     StridedSlice 2
     Transpose 2
    cluster 8 size 11
     Cast 1
     Const 4
     Floor 1
     Identity 1
     Mul 2
     Pow 1
     Sub 1
    cluster 9 size 5
     All 1
     Const 1
     Less 1
     LogicalAnd 1
     LogicalNot 1
    cluster 10 size 9
     All 1
     Const 4
     Equal 1
     LessEqual 1
     LogicalOr 1
     Max 1
    cluster 11 size 302
     Add 24
     BatchMatMulV2 1
     BiasAdd 8
     Cast 8
     ConcatV2 16
     Const 81
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

        (TF_ConstOp ConstantAttr<RankedF32ElementsAttr<[]>, "1.0f">))),
      (TF_Log1pOp:$dest $arg), [], [(CopyAttrs $src, $dest)]>;
    
    //===----------------------------------------------------------------------===//
    // LogicalNot op patterns.
    //===----------------------------------------------------------------------===//
    
    def LogicalNotOfEqual : Pat<
      (TF_LogicalNotOp:$src (TF_EqualOp $arg0, $arg1, $shape_error)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    // CHECK: return %arg0
    }
    
    // CHECK-LABEL: testDoubleLogicalNot
    func.func @testDoubleLogicalNot(%arg0: tensor<8x16x32x64xi1>) -> tensor<8x16x32x64xi1> {
      %0 = "tf.LogicalNot"(%arg0) : (tensor<8x16x32x64xi1>) -> tensor<8x16x32x64xi1>
      %1 = "tf.LogicalNot"(%0) : (tensor<8x16x32x64xi1>) -> tensor<8x16x32x64xi1>
      func.return %1: tensor<8x16x32x64xi1>
    
    // CHECK: return %arg0
    }
    
    // CHECK-LABEL: testDoubleNeg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

    }
    
    // -----
    
    // Nested IfRegions
    // CHECK: func private @tf.IfRegion1_else
    // CHECK-NEXT: "tf.Acos"
    // CHECK-NEXT: "tf.Abs"
    
    // CHECK: func private @tf.IfRegion1_then
    // CHECK-NEXT: "tf.LogicalNot"
    // CHECK-NEXT: "tf.Asin"
    // CHECK-NEXT: "tf.If"({{.+}}) <{else_branch = @tf.IfRegion_else, {{.+}} then_branch = @tf.IfRegion_then}
    
    // CHECK: func private @tf.IfRegion_else
    // CHECK-NEXT: "tf.Neg"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  8. RELEASE.md

            `tf.atan2`, `tf.atanh`, `tf.cos`, `tf.cosh`, `tf.equal`, `tf.exp`,
            `tf.floor`, `tf.greater`, `tf.greater_equal`, `tf.less`,
            `tf.less_equal`, `tf.log`, `tf.logp1`, `tf.logical_and`,
            `tf.logical_not`, `tf.logical_or`, `tf.maximum`, `tf.minimum`,
            `tf.not_equal`, `tf.sin`, `tf.sinh`, `tf.tan`
        *   Deprecate `tf.data.Dataset.shard`.
        *   Deprecate `saved_model.loader.load` which is replaced by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        "SUM",
        "SQRT",
        "RSQRT",
        "SHAPE",
        "POW",
        "ARG_MIN",
        "FAKE_QUANT",
        "REDUCE_PROD",
        "REDUCE_MAX",
        "PACK",
        "LOGICAL_OR",
        "ONE_HOT",
        "LOGICAL_AND",
        "LOGICAL_NOT",
        "UNPACK",
        "REDUCE_MIN",
        "FLOOR_DIV",
        "REDUCE_ANY",
        "SQUARE",
        "ZEROS_LIKE",
        "FILL",
        "FLOOR_MOD",
        "RANGE",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

    REGISTER_NO_GRADIENT_OP("Equal");
    REGISTER_NO_GRADIENT_OP("ApproximateEqual");
    REGISTER_NO_GRADIENT_OP("NotEqual");
    REGISTER_NO_GRADIENT_OP("LogicalAnd");
    REGISTER_NO_GRADIENT_OP("LogicalOr");
    REGISTER_NO_GRADIENT_OP("LogicalNot");
    REGISTER_NO_GRADIENT_OP("Floor");
    
    // Conjugate helper function returns the conjugate of an Output if it
    // is complex valued.
    Output ConjugateHelper(const Scope& scope, const Output& out) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top