Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 473 for Region (0.19 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		}
    		return nil
    	}
    
    	region := node.GetLabels()[v1.LabelTopologyRegion]
    	zone := node.GetLabels()[v1.LabelTopologyZone]
    	subzone := node.GetLabels()[label.TopologySubzone.Name]
    
    	if region == "" && zone == "" && subzone == "" {
    		return nil
    	}
    
    	return &workloadapi.Locality{
    		Region:  region,
    		Zone:    zone,
    		Subzone: subzone,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.cc

      }
      return success();
    }
    
    // Check if the specified region is a binary reduction function that takes 2
    // inputs and returns the second input. Functions like this are used by update
    // scatter like ops.
    template <>
    LogicalResult MatchBinaryReduceFunction<void>(mlir::Region& function) {
      Block& body = function.front();
      if (body.getNumArguments() != 2) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. internal/event/config_test.go

    	testCases := []struct {
    		queue      *Queue
    		region     string
    		targetList *TargetList
    		expectErr  bool
    	}{
    		{queue1, "eu-west-1", nil, true},
    		{queue2, "us-east-1", targetList1, true},
    		{queue3, "", targetList2, false},
    		{queue2, "us-east-1", targetList2, false},
    	}
    
    	for i, testCase := range testCases {
    		err := testCase.queue.Validate(testCase.region, testCase.targetList)
    		expectErr := (err != nil)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 05 10:16:33 UTC 2023
    - 29K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

     public:
      QuantizeContext(func::FuncOp func, const DeviceTarget &spec);
    
      // Returns all the quant region ops.
      std::vector<quantfork::QuantizeRegionOp> GetAllOps();
    
      // For each quant region op, propagates its quantization parameters according
      // to the kernel specification and also returns the adjacent quant region ops
      // which get the new quantization parameters propagated.
      LogicalResult Handle(quantfork::QuantizeRegionOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

                           bool wouldBeCloned) const final {
        return true;
      }
      // Returns true if the given region 'src' can be inlined into the region
      // 'dest' that is attached to an operation registered to the current dialect.
      bool isLegalToInline(Region *dest, Region *src, bool wouldBeCloned,
                           IRMapping &) const final {
        return true;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    }
    
    // -----
    
    // Check that an empty graph is invalid (it needs a region).
    func.func @empty_graph() {
     "tf_executor.graph" () ({
    // expected-error@-1 {{'tf_executor.graph' op region #0 ('body') failed to verify constraint: region with 1 blocks}}
      }) : () -> ()
      func.return
    }
    
    // -----
    
    // Check that an empty graph is invalid (it needs a region).
    func.func @empty_graph() {
     "tf_executor.graph" () ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    mlir::LogicalResult PropagateValuesConstraints(
        mlir::Region &region, const ClusteringPolicySet &policies,
        ValuesConstraintSet &constraints, bool resolve, bool emit_remarks) {
      // Propagate constraints for all operations in the region.
      llvm::SmallVector<Operation *> worklist;
      region.walk([&](Operation *op) { worklist.emplace_back(op); });
    
      // Propagate constraints only through operations inside the `region`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc.go

    // first-fit approach.
    //
    // Each entry in the radix tree is a summary that describes three properties of
    // a particular region of the address space: the number of contiguous free pages
    // at the start and end of the region it represents, and the maximum number of
    // contiguous free pages found anywhere in that region.
    //
    // Each level of the radix tree is stored as one contiguous array, which represents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/http.go

    </ul>
    
    <h2>User-defined tasks and regions</h2>
    <p>
      The trace API allows a target program to annotate a <a
      href='https://pkg.go.dev/runtime/trace#Region'>region</a> of code
      within a goroutine, such as a key function, so that its performance
      can be analyzed.
    
      <a href='https://pkg.go.dev/runtime/trace#Log'>Log events</a> may be
      associated with a region to record progress and relevant values.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. pkg/api/pod/warnings_test.go

    				`spec.nodeSelector[beta.kubernetes.io/os]: deprecated since v1.14; use "kubernetes.io/os" instead`,
    				`spec.nodeSelector[failure-domain.beta.kubernetes.io/region]: deprecated since v1.17; use "topology.kubernetes.io/region" instead`,
    				`spec.nodeSelector[failure-domain.beta.kubernetes.io/zone]: deprecated since v1.17; use "topology.kubernetes.io/zone" instead`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top