Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for Cond (0.12 sec)

  1. src/cmd/go/internal/modload/load.go

    	// loadPkg have been populated.
    	pkgImportsLoaded
    )
    
    // has reports whether all of the flags in cond are set in f.
    func (f loadPkgFlags) has(cond loadPkgFlags) bool {
    	return f&cond == cond
    }
    
    // An atomicLoadPkgFlags stores a loadPkgFlags for which individual flags can be
    // added atomically.
    type atomicLoadPkgFlags struct {
    	bits atomic.Int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define T1H   V3
    
    #define PL    V30
    #define PH    V31
    
    #define CAR1  V6
    // func p256NegCond(val *p256Point, cond int)
    TEXT ·p256NegCond(SB), NOSPLIT, $0-16
    	MOVD val+0(FP), P1ptr
    	MOVD $16, R16
    
    	MOVD cond+8(FP), R6
    	CMP  $0, R6
    	BC   12, 2, LR      // just return if cond == 0
    
    	MOVD $p256mul<>+0x00(SB), CPOOL
    
    	LXVD2X (P1ptr)(R0), Y1L
    	LXVD2X (P1ptr)(R16), Y1H
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        func_name, func_type = self.visit(node.func)
        func_type = self._get_inferred_type(node.func, func_type)
        if func_type == TFRTypes.AG_BUILTIN_FUNC:
          if func_name == 'if_stmt':
            cond, _ = self.visit(node.args[0])
            body, _ = self.visit(node.args[1])
            orelse, _ = self.visit(node.args[2])
            get_state, _ = self.visit(node.args[3])
            nouts = int(node.args[6].value)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          const auto condition_send_recv_key =
              llvm::formatv("while_condition_channel_{0}",
                            communication_key_index++)
                  .str();
          auto& cond = host_while.getCond();
          cond.push_back(new Block);
          auto condition =
              while_op.getCond().front().getTerminator()->getOperand(0);
          builder.setInsertionPoint(while_op.getCond().front().getTerminator());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    `},
    		{
    			name: "cond",
    			f:    blockCond,
    			stk: []string{
    				"sync.(*Cond).Wait",
    				"runtime/pprof.blockCond",
    				"runtime/pprof.TestBlockProfile",
    			},
    			re: `
    [0-9]+ [0-9]+ @( 0x[[:xdigit:]]+)+
    #	0x[0-9a-f]+	sync\.\(\*Cond\)\.Wait\+0x[0-9a-f]+	.*sync/cond\.go:[0-9]+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

    //      Incr             |
    //       |               |
    //       v               |
    //      Switch <- Cond   |
    //       |               |
    //       v (oidx: 1)     |
    //       |               |
    //       +---------------+
    //
    // Where S is the predicate for Init and X is the predicate that asserts that
    // Cond is true.  {S,&,X} states that Merge is live on the first "iteration" iff
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    TEST(XlaCompilationTest, DontClusterTheSpecialIdentityDrivingConstsInLoop) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Output cond = ops::Placeholder(root.WithOpName("cond"), DT_BOOL);
      Output value = ops::Placeholder(root.WithOpName("value"), DT_FLOAT);
      Output loop_cond = ops::LoopCond(root.WithOpName("loop_cond"), cond);
      ops::Switch switch_node(root.WithOpName("switch"), value, loop_cond);
    
      Output identity =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // That is, an Identity node in the loop cond computation is used to drive
        // const nodes consumed by the loop body.  If this Identity node goes into
        // the same cluster with nodes from the loop body, extra dependency is
        // created between the loop cond and body computations and it hinders the
        // progression of the loop cond computation at runtime with significant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. src/go/build/build.go

    		// Parse GOOS/GOARCH stuff.
    		f := strings.Fields(line)
    		if len(f) < 1 {
    			return fmt.Errorf("%s: invalid #cgo line: %s", filename, orig)
    		}
    
    		cond, verb := f[:len(f)-1], f[len(f)-1]
    		if len(cond) > 0 {
    			ok := false
    			for _, c := range cond {
    				if ctxt.matchAuto(c, nil) {
    					ok = true
    					break
    				}
    			}
    			if !ok {
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	testService = "test"
    )
    
    // eventually polls cond until it completes (returns true) or times out (resulting in a test failure).
    func eventually(t test.Failer, cond func() bool) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		if !cond() {
    			return fmt.Errorf("failed to get positive condition")
    		}
    		return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top