Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 160 for clustered (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

          cluster.constraints = std::move(member.constraints);
    
        // Add operation to the cluster.
        if (auto op = member.source.dyn_cast<Operation *>())
          cluster.operations.emplace_back(op);
      }
    
      llvm::SmallVector<Cluster> clusters;
      for (auto &kv : root_clusters) {
        Cluster &cluster = kv.getSecond();
        // Skip degenerate clusters formed by a single basic block argument.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.cc

                "If true then insert Print nodes to print out values produced by "
                "XLA clusters."),
           Flag("tf_xla_check_cluster_input_numerics",
                &build_ops_flags->tf_xla_check_cluster_input_numerics,
                "If true then insert CheckNumerics nodes to check all cluster "
                "inputs."),
           Flag("tf_xla_check_cluster_output_numerics",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

    // Flags common to the _Xla* ops and their kernels.
    struct XlaOpsCommonFlags {
      // If true, _XlaCompile always refuses to compile the cluster, which means the
      // XLA clusters always run in the TF executor.  Defaults to false.
      bool tf_xla_always_defer_compilation;
      // If true, _XlaCompile compiles the cluster asynchronously with respect to
      // the main execution. The fallback path is taken while compilation happens.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/ep_filters_test.go

    				Weight: 42,
    			},
    		},
    		wantWorkloadMetadata: []string{
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1b",
    			";ns;example;;cluster4",
    			";;;;cluster2a",
    			";;;;cluster2b",
    			";;;;cluster2b",
    		},
    	},
    	{
    		name:  "from_network1_cluster1b",
    		proxy: makeProxy("network1", "cluster1b"),
    		want: []xdstest.LocLbEpInfo{
    			{
    				LbEps: []xdstest.LbEpInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-SAME: device = "device_1"
    // CHECK-SAME: topology = "topology_1"
    // CHECK:      return %[[CLUSTER_0]], %[[CLUSTER_1]]
    
    
    // Test operands and results of ops of a cluster that are interleaved between
    // other ops of the same cluster are moved before and after the cluster
    // properly.
    // CHECK-LABEL: func @interleaved_cluster_operands_results
    func.func @interleaved_cluster_operands_results() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

    func.func @testIgnoreInferenceType(%arg0: tensor<1x384x384xf32>, %arg1: tensor<1x1x384x!quant.uniform<i8:f32, 0.003:-128>>) -> (tensor<1x384x384xf32>, tensor<1x1x384x!quant.uniform<i8:f32, 0.003:-128>>) {
      // These 2 ops are clustered together when `ignore-inference-type` sets to true.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    				},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{
    				{
    					Name:                 "outbound|8080|foobar|foo.default.svc.cluster.local",
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    					EdsClusterConfig: &cluster.Cluster_EdsClusterConfig{
    						ServiceName: "outbound|8080|foobar|foo.default.svc.cluster.local",
    					},
    					CircuitBreakers: &cluster.CircuitBreakers{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster.go

    func (p clusterPatcher) conditionallyAppend(l []*cluster.Cluster, hosts []host.Name, clusters ...*cluster.Cluster) []*cluster.Cluster {
    	if !p.hasPatches() {
    		return append(l, clusters...)
    	}
    	for _, c := range clusters {
    		if patched := p.doPatch(hosts, c); patched != nil {
    			l = append(l, patched)
    		}
    	}
    	return l
    }
    
    func (p clusterPatcher) insertedClusters() []*cluster.Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/cluster_outlining.mlir

    }
    
    // CHECK: func private @[[CLUSTER]]
    // CHECK-SAME: () -> tensor<?xi32>
    // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"()
    // CHECK: return %[[A_OUTPUT]]
    
    // -----
    
    // Tests cluster attributes are copied over to cluster_func.
    
    // CHECK-LABEL: func @cluster_attrs
    func.func @cluster_attrs() -> tensor<?xi32> {
      %0 = "tf_device.cluster"() ({
        %1 = "tf.A"() : () -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/conversion_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/annotation"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/kube"
    	"istio.io/istio/pkg/config/protocol"
    )
    
    var (
    	domainSuffix = "company.com"
    	clusterID    = cluster.ID("test-cluster")
    )
    
    func TestConvertProtocol(t *testing.T) {
    	http := "http"
    	type protocolCase struct {
    		port        int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top