Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 516 for Region (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Create empty then branch region.
      auto& then_branch = host_side_if.getThenBranch();
      then_branch.push_back(new Block);
      builder.setInsertionPointToEnd(&then_branch.front());
      builder.create<mlir::TF::YieldOp>(if_region.getLoc(),
                                        /*operands=*/ArrayRef<Value>{});
    
      // Create empty else branch region.
      auto& else_branch = host_side_if.getElseBranch();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      // regions attached to the op's in the block.
      if (metadata_map.empty()) {
        for (Operation& op : *block) {
          for (Region& region : op.getRegions()) {
            if (!llvm::hasSingleElement(region))
              return op.emitOpError("Expected single block region");
            if (failed(FormClustersInBlock(&region.front(), side_effect_analysis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        OptionalAttr<DictArrayAttr>:$res_attrs
      );
    
      let results = (outs);
    
      // When the regions is empty, the tfr.func is an external function and used
      // to model the element type constraints of the tf op. Otherwise, there is one
      // region containing the composition.
      let regions = (region VariadicRegion<AnyRegion>:$body);
    
      let skipDefaultBuilders = 1;
    
      let builders = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/cmd/trace/pprof.go

    		})
    		var lastTimestamp trace.Time
    		var n int
    		// Select only the outermost regions.
    		for _, i := range intervals {
    			if lastTimestamp <= i.start {
    				intervals[n] = i // new non-overlapping region starts.
    				lastTimestamp = i.end
    				n++
    			}
    			// Otherwise, skip because this region overlaps with a previous region.
    		}
    		gToIntervals[g] = intervals[:n]
    	}
    	return gToIntervals, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Build a subgraph with a given name out of the region either corresponding
      // to a function's body or while op. Modifies *region by calling
      // ExtractControlEdges.
      std::optional<BufferOffset<tflite::SubGraph>> BuildSubGraph(
          const std::string& name, Region* region, int index);
    
      // Modifies *block by unwrapping all ControlNodeOps. The DAG of the control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation_test.go

    		{
    			name: "invalid LocalityLoadBalancerSetting specify both failoverPriority and region in failover",
    			in: &networking.LocalityLoadBalancerSetting{
    				Failover: []*networking.LocalityLoadBalancerSetting_Failover{
    					{
    						From: "region1",
    						To:   "region2",
    					},
    				},
    				FailoverPriority: []string{"topology.kubernetes.io/region"},
    			},
    			outlier: &networking.OutlierDetection{},
    			err:     true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

     * different types of failures.
     */
    class ResolutionFailureHandlerIntegrationTest extends AbstractIntegrationSpec {
        // region resolution failures
        // region Graph Variant failures
        def "demonstrate ambiguous graph variant selection failure with single disambiguating value for project"() {
            ambiguousGraphVariantForProjectWithSingleDisambiguatingAttribute.prepare()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Sinks `tf.Const` operations in the ClusterOp region using them. This is
    // performed in order to limit the number of values implicitly captured in this
    // region before outlining.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateClusterConstantSinkingPass(
        llvm::function_ref<bool(tf_device::ClusterOp, ElementsAttr)> filter = {});
    
    // Creates a pass that outlines regions of tf_device.cluster operations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      unformat_operands.append(replicated_block_args.begin(),
                               replicated_block_args.end());
      unformat_operands.append(packed_block_args.begin(), packed_block_args.end());
      unformat_operands.push_back(state);
    
      // Insert the default key as the second last operand.
      unformat_operands.insert(
          unformat_operands.begin() + unformat_operands.size() - 1,
          default_state_key.getResult());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. pkg/bootstrap/option/instances.go

    	ntype := strings.Split(value, "~")[0]
    	return newOption("nodeType", ntype)
    }
    
    func XdsType(value string) Instance {
    	return newOption("xds_type", value)
    }
    
    func Region(value string) Instance {
    	return newOptionOrSkipIfZero("region", value)
    }
    
    func Zone(value string) Instance {
    	return newOptionOrSkipIfZero("zone", value)
    }
    
    func SubZone(value string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top