Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for GreaterEqual (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (GreaterThan (FlagGT)) => (MOVDconst [1])
    
    (GreaterEqual (FlagEQ)) => (MOVDconst [1])
    (GreaterEqual (FlagLT)) => (MOVDconst [0])
    (GreaterEqual (FlagGT)) => (MOVDconst [1])
    
    // absorb InvertFlags into boolean values
    ((Equal|NotEqual|LessThan|GreaterThan|LessEqual|GreaterEqual) (InvertFlags x)) => ((Equal|NotEqual|GreaterThan|LessThan|GreaterEqual|LessEqual) x)
    
    
    // Elide compares of bit tests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output b = ops::Placeholder(root.WithOpName("test/b"), DT_FLOAT);
      Output check =
          ops::CheckNumerics(root.WithOpName("test/check"), a, "test/check");
      Output ge = ops::GreaterEqual(root.WithOpName("test/greaterequal"), check, b);
      Operation assert = ops::Assert(root.WithOpName("test/assert"), ge, {a, b});
    
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      TF_ASSERT_OK(root.ToGraph(graph.get()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad.cc

    namespace ops {
    namespace {
    
    // Logical operations have no gradients.
    REGISTER_NO_GRADIENT_OP("Less");
    REGISTER_NO_GRADIENT_OP("LessEqual");
    REGISTER_NO_GRADIENT_OP("Greater");
    REGISTER_NO_GRADIENT_OP("GreaterEqual");
    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");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (LessThanU (InvertFlags x)) => (GreaterThanU x)
    (GreaterThan (InvertFlags x)) => (LessThan x)
    (GreaterThanU (InvertFlags x)) => (LessThanU x)
    (LessEqual (InvertFlags x)) => (GreaterEqual x)
    (LessEqualU (InvertFlags x)) => (GreaterEqualU x)
    (GreaterEqual (InvertFlags x)) => (LessEqual x)
    (GreaterEqualU (InvertFlags x)) => (LessEqualU x)
    
    // absorb flag constants into conditional instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: %[[NEG:.*]] = "tf.Neg"(%[[NUM_UPPER_OR_N]]) : (tensor<i64>) -> tensor<i64>
      // CHECK-DAG: %[[GE:.*]] = "tf.GreaterEqual"(%[[OFFSET]], %[[NEG]]) : (tensor<4x5xi64>, tensor<i64>) -> tensor<4x5xi1>
      // CHECK-DAG: %[[INDICATOR:.*]] = "tf.LogicalAnd"(%[[LE2]], %[[GE]]) : (tensor<4x5xi1>, tensor<4x5xi1>) -> tensor<4x5xi1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "GreaterThan", argLength: 1, reg: readflags},      // bool, true flags encode signed x>y false otherwise.
    		{name: "GreaterEqual", argLength: 1, reg: readflags},     // bool, true flags encode signed x>=y false otherwise.
    		{name: "LessThanU", argLength: 1, reg: readflags},        // bool, true flags encode unsigned x<y false otherwise.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    		return nil
    	}
    	return v.Args[0]
    }
    
    // arm64Negate finds the complement to an ARM64 condition code,
    // for example !Equal -> NotEqual or !LessThan -> GreaterEqual
    //
    // For floating point, it's more subtle because NaN is unordered. We do
    // !LessThanF -> NotLessThanF, the latter takes care of NaNs.
    func arm64Negate(op Op) Op {
    	switch op {
    	case OpARM64LessThan:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top