Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 474 for Region (0.19 sec)

  1. pkg/bootstrap/config_test.go

    	defer os.Chdir(dir)
    	// prepare a pod label file
    	tempDir := t.TempDir()
    	os.Chdir(tempDir)
    	os.MkdirAll("./etc/istio/pod/", os.ModePerm)
    	os.WriteFile(constants.PodInfoLabelsPath, []byte(`istio-locality="region.zone.subzone"`), 0o600)
    
    	node, err := GetNodeMetaData(MetadataOptions{
    		ID:                          "test",
    		Envs:                        os.Environ(),
    		ExitOnZeroActiveConnections: true,
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_optimize_global_tensors.mlir

      attributes {tf_saved_model.exported_names = ["f"]} {
        "tf.unhandled_op"(%arg0) : (tensor<!tf_type.resource<tensor<f32>>>) -> ()
        func.return
      }
    }
    
    
    // -----
    
    // Test use as a region capture in an unhandled op
    module attributes {tf_saved_model.semantics} {
    
      // CHECK: "tf_saved_model.global_tensor"() <{
      // CHECK-SAME: is_mutable
      // CHECK-SAME: }> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cc

    namespace tf_mlrt {
    
    namespace {
    
    struct TensorflowMlrtInlinerInterface : public mlir::DialectInlinerInterface {
      using DialectInlinerInterface::DialectInlinerInterface;
      bool isLegalToInline(mlir::Operation *op, mlir::Region *dest,
                           bool would_be_cloned,
                           mlir::IRMapping &mapping) const final {
        // All tf_mlrt dialect ops can be inlined.
        return true;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      //   node label.
      // * topology.kubernetes.io/zone: the value indicates the zone where the
      //   endpoint is located. This should match the corresponding node label.
      // * topology.kubernetes.io/region: the value indicates the region where the
      //   endpoint is located. This should match the corresponding node label.
      // This field is deprecated and will be removed in future api versions.
      // +optional
      map<string, string> topology = 5;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/runtime/traceregion.go

    // Simple not-in-heap bump-pointer traceRegion allocator.
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // traceRegionAlloc is a thread-safe region allocator.
    // It holds a linked list of traceRegionAllocBlock.
    type traceRegionAlloc struct {
    	lock     mutex
    	dropping atomic.Bool          // For checking invariants.
    	current  atomic.UnsafePointer // *traceRegionAllocBlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.td

    // `tf_quant.composite_function` attribute.
    def IsNotInLiftedFunc :
          Constraint<CPred<"!IsInLiftedFunc($0.getDefiningOp())">>;
    
    // Checks if the value is not inside a StableHLO op with region.
    def IsNotInStableHloOpRegion :
          Constraint<CPred<"!IsInStableHloOpRegion($0.getDefiningOp())">>;
    
    // Checks if the given einsum op is supported for XlaDotV2 quantization.
    def IsEinsumSupportedByXlaDotV2 :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 00:32:20 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_functional_to_executor.cc

        return;
      }
      auto loc = func.getLoc();
      mlir::Block& body = func.front();
      // Find region of interest and ReturnOp.
      auto copy_range = body.without_terminator();
      if (copy_range.begin() != copy_range.end() &&
          std::next(copy_range.begin()) == copy_range.end() &&
          isa<tf_executor::GraphOp>(*copy_range.begin())) {
        // Already a graph.
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/materialize_mlir_passthrough_op.cc

                          << ") and main() entry point in the module ("
                          << main.getFunctionType().getNumResults()
                          << " results)\n";
          return;
        }
        Region &body = main.getBody();
        if (!llvm::hasSingleElement(body)) {
          op->emitError() << "MLIR Opaque Op expects a main() entry point with a "
                             "single block\n";
          return;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. hack/ginkgo-e2e.sh

    "${program[@]}" "${e2e_test}" -- \
      "${auth_config[@]:+${auth_config[@]}}" \
      --host="${KUBE_MASTER_URL}" \
      --provider="${KUBERNETES_PROVIDER}" \
      --gce-project="${PROJECT:-}" \
      --gce-zone="${ZONE:-}" \
      --gce-region="${REGION:-}" \
      --gce-multizone="${MULTIZONE:-false}" \
      --gke-cluster="${CLUSTER_NAME:-}" \
      --kube-master="${KUBE_MASTER:-}" \
      --cluster-tag="${CLUSTER_ID:-}" \
      --cloud-config-file="${CLOUD_CONFIG:-}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/internal/coverage/slicereader/slicereader.go

    import (
    	"encoding/binary"
    	"fmt"
    	"io"
    	"unsafe"
    )
    
    // This file contains the helper "SliceReader", a utility for
    // reading values from a byte slice that may or may not be backed
    // by a read-only mmap'd region.
    
    type Reader struct {
    	b        []byte
    	readonly bool
    	off      int64
    }
    
    func NewReader(b []byte, readonly bool) *Reader {
    	r := Reader{
    		b:        b,
    		readonly: readonly,
    	}
    	return &r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top