Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for analyzers (0.2 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

    // the merge nodes are pattern matched into the same AndRecurrence predicate
    // instance, the optimistic assignment of the same symbolic predicate is correct
    // and the analyzed result is taken.
    //
    // Otherwise, if the optimistic analysis fails to converge, we then obtain the
    // result by falling back to the pessimistic analysis which assigns a unique
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		case metav1.FinalizerDeleteDependents:
    			return true
    		case metav1.FinalizerOrphanDependents:
    			return false
    		}
    	}
    
    	return false
    }
    
    // deletionFinalizersForGarbageCollection analyzes the object and delete options
    // to determine whether the object is in need of finalization by the garbage
    // collector. If so, returns the set of deletion finalizers to apply and a bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        return llvm::SmallVector<mlir::NamedAttribute, 4>{
            builder.getNamedAttr("then_branch", then_attr),
            builder.getNamedAttr("else_branch", else_attr),
            // TODO(b/139667752): Analyze statelessness correctly
            builder.getNamedAttr("is_stateless", builder.getBoolAttr(false))};
      }
      if (auto* opts = options.AsWhileOptions()) {
        uint32_t cond_idx = opts->cond_subgraph_index;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	// Make a pass through the entry block looking for
    	// OpArg{Int,Float}Reg ops. Record the slots they use in a table
    	// ("sc"). We use a type-insensitive lookup for the slot table,
    	// since the type we get from the ABI analyzer won't always match
    	// what the compiler uses when creating OpArg{Int,Float}Reg ops.
    	for _, v := range f.Entry.Values {
    		if v.Op == OpArgIntReg || v.Op == OpArgFloatReg {
    			aux := v.Aux.(*AuxNameOffset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      static std::vector<std::string>* schemes = new std::vector<std::string>;
      return schemes;
    }
    
    // `INSTANTIATE_TEST_SUITE_P` is called once for every `TEST_P`. However, we
    // only want to analyze the user provided schemes and those that are registered
    // only once. Hence, this function keeping another static pointer to a vector
    // which contains only the schemes under test.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    	// fields
    	list, typ := p.parseVarList(false)
    
    	// optional tag
    	var tag *ast.BasicLit
    	if p.tok == token.STRING {
    		tag = &ast.BasicLit{p.pos, p.tok, p.lit}
    		p.next()
    	}
    
    	// analyze case
    	var idents []*ast.Ident
    	if typ != nil {
    		// IdentifierList Type
    		idents = p.makeIdentList(list)
    	} else {
    		// ["*"] TypeName (AnonymousField)
    		typ = list[0] // we always have at least one element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    $DEFAULT_NPD_HASH = '97ddfe3544da9e02a1cfb55d24f329eb29d606fca7fbbf800415d5de9dbc29a00563f8e0d1919595c8e316fd989d45b09b13c07be528841fc5fd37e21d016a2d'
    
    # Install Node Problem Detector (NPD).
    # NPD analyzes the host for problems that can disrupt workloads.
    # https://github.com/kubernetes/node-problem-detector
    function DownloadAndInstall-NodeProblemDetector {
      if ("${env:ENABLE_NODE_PROBLEM_DETECTOR}" -eq "standalone") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        return true;
      }
      bool isLegalToInline(Operation* op, Region* dest, bool wouldBeCloned,
                           IRMapping& valueMapping) const override {
        return true;
      }
    
      // Don't recursively analyze operations, because they can all be "inlined".
      bool shouldAnalyzeRecursively(Operation* op) const override { return true; }
    
      LogicalResult UnifyReplicationInfo(func::FuncOp func) {
        auto new_repl_info =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    			significantly more expensive.
    	    Sets -cover.
    
    	-coverpkg pattern1,pattern2,pattern3
    	    Apply coverage analysis in each test to packages matching the patterns.
    	    The default is for each test to analyze only the package being tested.
    	    See 'go help packages' for a description of package patterns.
    	    Sets -cover.
    
    	-cpu 1,2,4
    	    Specify a list of GOMAXPROCS values for which the tests, benchmarks or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top