Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 265 for region (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/region-control-flow-to-functional.mlir

    // -----
    
    // Match existing function->Region pattern (simple) for IfRegion
    func.func private @testIf1Then(tensor<*xf32>) -> tensor<*xf32>
    func.func private @testIf1Else(tensor<*xf32>) -> tensor<*xf32>
    func.func @testIf1Result(%arg0: tensor<i1>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      // CHECK: "tf.If"({{.+}}) <{else_branch = @testIf1Else, {{.+}} then_branch = @testIf1Then}
      %0 = "tf.IfRegion"(%arg0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 11:15:34 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone1",
    					},
    				},
    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone1",
    					},
    				},
    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. src/internal/trace/summary_test.go

    			t.Errorf("wanted region start event %s, got %s", wantStart, kind)
    		}
    		if kind == trace.EventRegionBegin {
    			if region.Start.Region().Type != region.Name {
    				t.Errorf("region name mismatch: event has %s, summary has %s", region.Start.Region().Type, region.Name)
    			}
    		} else {
    			st := region.Start.StateTransition()
    			if st.Resource.Kind != trace.ResourceGoroutine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/cmd/trace/regions.go

      padding-bottom: 4px;
    }
    </style>
    <body>
    <h1>Regions</h1>
    
    Below is a table containing a summary of all the user-defined regions in the trace.
    Regions are grouped by the region type and the point at which the region started.
    The rightmost column of the table contains a latency histogram for each region group.
    Note that this histogram only counts regions that began and ended within the traced
    period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                if (!testCaseRegions.containsKey(testId)) {
                    TestCaseRegion region = new TestCaseRegion();
                    testCaseRegions.put(testId, region);
                }
    
                TestCaseRegion region = testCaseRegions.get(testId);
    
                Region streamRegion = isStdout ? region.stdOutRegion : region.stdErrRegion;
    
                long total = output.getWritePosition();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    // through a ToBoolOp) between the region yield and the call. Returns none if
    // the region does not conform to this pattern.
    std::optional<func::CallOp> IsSingleCallRegion(Region& region,
                                                   bool allow_to_bool = false) {
      if (!llvm::hasSingleElement(region)) return std::nullopt;
    
      Block& block = region.front();
      auto it = block.rbegin();
      YieldOp yield = dyn_cast<YieldOp>(*it++);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      for (Region& region : case_or_if_op->getRegions())
        infos.push_back(&backtrack_analysis.GetAnalysisForRegion(region));
    
      // For region Case/If, the walk would have visited all branch regions before
      // visiting the Case/If op. Backtracking of each region results will either
      // give a value computed within these regions, or a region capture. If it is a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

                               bool passthru_extra_args, int num_loop_carried,
                               const llvm::SetVector<Value>& extern_values,
                               const SmallVectorImpl<Type>& types, Location loc) {
      auto func = CreateOutlineFunc(name, region, passthru_extra_args,
                                    num_loop_carried, extern_values, types, loc);
      OpBuilder b(region);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/trace/gen.go

    	if region.Start != nil {
    		startStack = region.Start.Stack()
    		startTime = region.Start.Time()
    		goroutine = region.Start.Goroutine()
    	}
    	if region.End != nil {
    		endStack = region.End.Stack()
    		endTime = region.End.Time()
    		goroutine = region.End.Goroutine()
    	}
    	if goroutine == trace.NoGoroutine {
    		return
    	}
    	arg := struct {
    		TaskID uint64 `json:"taskid"`
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. cmd/signature-v4_test.go

    	now := UTCNow()
    	credentialTemplate := "%s/%s/%s/s3/aws4_request"
    
    	region := globalSite.Region()
    	accessKeyID := globalActiveCred.AccessKey
    	testCases := []struct {
    		queryParams map[string]string
    		headers     map[string]string
    		region      string
    		expected    APIErrorCode
    	}{
    		// (0) Should error without a set URL query.
    		{
    			region:   globalMinioDefaultRegion,
    			expected: ErrInvalidQueryParams,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top