Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 212 for cond_a (0.11 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    }
    def LegalizeSelect : Pat<(TF_SelectOp $cond, $x, $y),
                             (TFL_SelectOp $cond, $x, $y)>;
    def LegalizeSelectV2SameStaticShape : Pat<(TF_SelectV2Op:$src_op $cond, $x, $y),
        (TFL_SelectOp $cond, $x, $y),
        [(OpHasSameStaticShapes $src_op)]>;
    def LegalizeSelectV2NotSameStaticShape : Pat<
      (TF_SelectV2Op:$src_op $cond, $x, $y),
      (TFL_SelectV2Op $cond, $x, $y),
      [(OpHasNotSameStaticShapes $src_op)]>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/nodes_test.go

    	{"CallStmt", `@go f()`},
    
    	{"ReturnStmt", `@return`},
    	{"ReturnStmt", `@return x`},
    	{"ReturnStmt", `@return a, b, a + b*f(1, 2, 3)`},
    
    	{"IfStmt", `@if cond {}`},
    	{"IfStmt", `@if cond { f() } else {}`},
    	{"IfStmt", `@if cond { f() } else { g(); h() }`},
    	{"ForStmt", `@for {}`},
    	{"ForStmt", `@for { f() }`},
    	{"SwitchStmt", `@switch {}`},
    	{"SwitchStmt", `@switch { default: }`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm.s

    //	}
    //	LTYPE1 cond imsr ',' reg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    	ADD	$1, R2
    	ADD	R1<<R2, R3
    	ADD	R1>>R2, R3
    	ADD	R1@>R2, R3
    	ADD	R1->R2, R3
    	ADD	R1, R2
    
    //
    // MVN
    //
    //	LTYPE2 cond imsr ',' reg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    	CLZ	R1, R2
    
    //
    // MOVW
    //
    //	LTYPE3 cond gen ',' gen
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    def : Pat<(MHLO_SelectOp $cond, $t,
                                    (MHLO_BroadcastInDimOp:$output
                                      $bcast_operand,
                                      $broadcast_dimensions)),
              (TF_SelectV2Op $cond, $t, $bcast_operand),
              [(IsTFStyleBroadcast $broadcast_dimensions, $output)]>;
    def : Pat<(MHLO_SelectOp $cond, (MHLO_BroadcastInDimOp:$output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/builtin.go

    			nif := ir.NewIfStmt(base.Pos, nil, nil, nil)
    			nif.Cond = ir.NewBinaryExpr(base.Pos, ir.ONE, typecheck.Conv(typecheck.Conv(len64, types.Types[types.TINT]), lenType), len64)
    			nif.Body.Append(mkcall("panicunsafeslicelen", nil, &nif.Body))
    			appendWalkStmt(init, nif)
    		}
    
    		// if len < 0 { panicunsafeslicelen() }
    		nif := ir.NewIfStmt(base.Pos, nil, nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

            ArrayRef<Value>{operand, caller->getResult(updated_index)});
      }
    }
    
    // Lifts loads/stores from while loop's body and cond functions.
    LogicalResult HandleWhileLoop(TF::WhileOp while_op, func::FuncOp body,
                                  func::FuncOp cond) {
      auto return_op = body.front().getTerminator();
      llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> body_use_info;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/cluster_tf_ops_pass.mlir

    // CHECK-NEXT:   %[[RESULT_0:.*]] = "tf.While"(%[[ARG_0]])
    // CHECK-SAME:   body = @while_body
    // CHECK-SAME:   cond = @while_cond
    // CHECK-SAME:   device = "/job:localhost/replica:0/task:0/device:CPU:0"
    // CHECK-NEXT:   %[[RESULT_1:.*]] = tf_device.remote_run "/job:worker/replica:0/task:1" @[[MAIN_PARTITION_0:.*]](%[[ARG_1]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

        // expected-error@+1 {{Result #0 is not tied to arg #0 of the body}}
        %1 = "tf.WhileRegion"(%0) ({
          ^bb0(%carg0:tensor<*x!tf_type.resource<tensor<f32>>>):
            %cond = "tf.SomeOp"() : () -> tensor<i1>
            "tf.Yield"(%cond) : (tensor<i1>) -> ()
          }, {
          ^bb0(%carg0:tensor<*x!tf_type.resource<tensor<f32>>>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/control_flow_duplicate_v1.py

    # CHECK: func private @[[else]](
    # CHECK: func private @[[then]](
    
    
    def Test():
    
      zero = tf.constant(0)
      one = tf.constant(1)
      x = tf.placeholder(tf.int32, shape=(), name='input')
      result = tf.cond(x > zero, lambda: tf.square(x), lambda: tf.add(x, one))
    
      tensor_info_result = tf.compat.v1.saved_model.utils.build_tensor_info(result)
    
      signature_def = tf.saved_model.signature_def_utils.build_signature_def(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	if err != nil && !apierrors.IsNotFound(err) {
    		return errors.Wrapf(err, "cannot get Node %q", nodeName)
    	}
    	for _, cond := range node.Status.Conditions {
    		if cond.Type == v1.NodeReady && cond.Status == v1.ConditionTrue {
    			return errors.Errorf("a Node with name %q and status %q already exists in the cluster. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top