Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for cond_ref (0.27 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

      PredicateMapTy predicate_map;
      TF_ASSERT_OK(ComputePredicates(*root.graph(), &predicate_map));
    
      EXPECT_EQ(predicate_map[ControlOutputFor(id_false)], "~*cond_ref:0");
      EXPECT_EQ(predicate_map[ControlOutputFor(id_true)], "*cond_ref:0");
    }
    
    void CreateSwitchN(const Scope& scope, Input data, Input output_index,
                       int64_t num_outs, OutputList* outputs) {
      if (!scope.ok()) return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

      // CHECK: [[cond_res:%.*]]:2 = tfrt.cond
      // CHECK-SAME: @cond_true @cond_false(%arg0, %arg1) : (!tfrt.chain, !tfrt_fallback.tf_tensor)
      %2 = "tf.If"(%1, %arg0) {else_branch = @cond_false, then_branch = @cond_true, is_stateless = false} : (tensor<i1>, tensor<i32>) -> tensor<i32>
      // Note: returns %out_op_chain.
      // CHECK: tfrt.return [[cond_res]]#0, [[cond_res]]#1 : !tfrt.chain, !tfrt_fallback.tf_tensor
      func.return %2 : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    	case A0 <= r && r <= A7:
    		return fmt.Sprintf("a%d", int(r-A0))
    	default:
    		return fmt.Sprintf("Reg(%d)", int(r))
    	}
    }
    
    // CondReg is a bit or field in the condition register.
    type CondReg int8
    
    const (
    	_ CondReg = iota
    	// Condition Regster bits
    	Cond0LT
    	Cond0GT
    	Cond0EQ
    	Cond0SO
    	Cond1LT
    	Cond1GT
    	Cond1EQ
    	Cond1SO
    	Cond2LT
    	Cond2GT
    	Cond2EQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

        EXPECT_NE(while_oc_node, nullptr);
    
        // Check that cond outside compilation has node "identity_cond_fn".
        const FunctionDef *cond_def = fld.Find("oc_cond_host_while_cond_fn");
        EXPECT_NE(cond_def, nullptr);
        bool has_identity_cond_fn_node = false;
        for (const auto &node_def : cond_def->node_def()) {
          if (node_def.name() == "identity_cond_fn") {
            has_identity_cond_fn_node = true;
            break;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	switch a.Type {
    	default:
    		return nil
    	case TypeUnknown:
    		return nil
    	case TypeReg:
    		return R0 + Reg(a.BitFields.Parse(i))
    	case TypeCondRegBit:
    		return Cond0LT + CondReg(a.BitFields.Parse(i))
    	case TypeCondRegField:
    		return CR0 + CondReg(a.BitFields.Parse(i))
    	case TypeFPReg:
    		return F0 + Reg(a.BitFields.Parse(i))
    	case TypeVecReg:
    		return V0 + Reg(a.BitFields.Parse(i))
    	case TypeVecSReg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		STD, STDU,
    		STFD, STFDU,
    		STFS, STFSU,
    		STQ, HASHST, HASHSTP:
    		return op + " " + strings.Join(args, ",")
    
    	case FCMPU, FCMPO, CMPD, CMPDI, CMPLD, CMPLDI, CMPW, CMPWI, CMPLW, CMPLWI:
    		crf := int(inst.Args[0].(CondReg) - CR0)
    		cmpstr := op + " " + args[1] + "," + args[2]
    		if crf != 0 { // print CRx as the final operand if not implied (i.e BF != 0)
    			cmpstr += "," + args[0]
    		}
    		return cmpstr
    
    	case LIS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		}
    	}
    	switch arg := arg.(type) {
    	case Reg:
    		if isLoadStoreOp(inst.Op) && argIndex == 1 && arg == R0 {
    			return "0"
    		}
    		return arg.String()
    	case CondReg:
    		// The CondReg can either be found in a CMP, where the
    		// condition register field is being set, or in an instruction
    		// like a branch or isel that is testing a bit in a condition
    		// register field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

    // CHECK: func @"while_cond_lt9/tf_mlrt_predicate"([[arg:%.*]]: !tf_mlrt.tensor) -> i1
    // CHECK: [[cond_res:%.*]] = call @while_cond_lt9([[arg]]) : (!tf_mlrt.tensor) -> !tf_mlrt.tensor
    // CHECK: [[bool_res:%.*]] = tf_mlrt.predicate [[cond_res]]
    // CHECK: return [[bool_res]] : i1
    
    // CHECK-LABEL: func @multi_while_test
    func.func @multi_while_test() -> (tensor<i32>, tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top