Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for Region (0.13 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass extracts a CPU computation cluster with `_xla_outside_compilation`
    annotation, which denotes ops that should be run on CPU/host, from a device cluster.
    Each outside compilation cluster is moved to
    a tf_device.parallel_execute region. The device cluster is also moved to a
    tf_device.parallel_execute region. Communication ops between device and host are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    	// that match less (or, eventually, none) preferences.
    	// For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
    	// 1. Endpoints matching `[NETWORK, REGION, ZONE]`
    	// 2. Endpoints matching `[NETWORK, REGION]`
    	// 3. Endpoints matching `[NETWORK]`
    	// 4. Any endpoints
    	LoadBalancing_FAILOVER LoadBalancing_Mode = 2
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    			pod: func() *v1.Pod {
    				p := basePod.DeepCopy()
    				p.Labels[model.LocalityLabel] = "r.z.s"
    				return p
    			}(),
    			node: baseNode,
    			expected: &core.Locality{
    				Region:  "r",
    				Zone:    "z",
    				SubZone: "s",
    			},
    		},
    		{
    			name: "node specific label",
    			pod:  basePod,
    			node: func() *v1.Node {
    				p := baseNode.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Inline the regions from the old while into the new one, and apply
        // signature conversion to inlined region.
        for (auto it : llvm::zip(op.getRegions(), converted.getRegions())) {
          Region &old_region = *std::get<0>(it);
          Region &new_region = *std::get<1>(it);
    
          Block &entry = old_region.front();
          // Build signature conversion for the region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    func (s *gState) endRegion(r userRegion) error {
    	if len(s.regions) == 0 {
    		// We do not know about regions that began before tracing started.
    		return nil
    	}
    	if next := s.regions[len(s.regions)-1]; next != r {
    		return fmt.Errorf("misuse of region in goroutine %v: region end %v when the inner-most active region start event is %v", s.id, r, next)
    	}
    	s.regions = s.regions[:len(s.regions)-1]
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    // findScavengeCandidate will not return a region smaller than min pages in size,
    // or that is min pages or greater in size but not aligned to min. min must be
    // a non-zero power of 2 <= maxPagesPerPhysPage.
    //
    // max is a hint for how big of a region is desired. If max >= pallocChunkPages, then
    // findScavengeCandidate effectively returns entire free and unscavenged regions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      func.return %arg1 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Tests that the pass returns meaningful error message when region based
    // control flow op has resource arguments.
    func.func @main() -> () {
      %size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		},
    		{
    			name: "should return correct az if node has only region label",
    			pods: []*corev1.Pod{pod1, pod2},
    			nodes: []*corev1.Node{
    				generateNode("node1", map[string]string{NodeRegionLabel: "region1"}),
    				generateNode("node2", map[string]string{NodeRegionLabel: "region2"}),
    			},
    			wantAZ: map[*corev1.Pod]string{
    				pod1: "region1//",
    				pod2: "region2//",
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    		return
    	}
    
    	// Generate response.
    	encodedSuccessResponse := encodeResponse(LocationResponse{})
    	// Get current region.
    	region := globalSite.Region()
    	if region != globalMinioDefaultRegion {
    		encodedSuccessResponse = encodeResponse(LocationResponse{
    			Location: region,
    		})
    	}
    
    	// Write success response.
    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    		if arenaBase < zeroedBase {
    			// We extended into the non-zeroed part of the
    			// arena, so this region needs to be zeroed before use.
    			//
    			// zeroedBase is monotonically increasing, so if we see this now then
    			// we can be sure we need to zero this memory region.
    			//
    			// We still need to update zeroedBase for this arena, and
    			// potentially more arenas.
    			needZero = true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top