Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,373 for split3 (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

      llvm::SmallVector<mlir::TF::SplitOp, 4> split_ops_for_tiled_input;
      split_ops_for_tiled_input.reserve(
          input_sharding.tile_assignment_devices_size());
    
      // Creates a tree of split nodes for sharding tiled inputs. Splits nodes
      // are created such that input data is sharded in row major order.
      // Split nodes at ith depth from the original input node represent nodes
      // that split the input data at i-th dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Splitter.java

        return strategy.iterator(this, sequence);
      }
    
      /**
       * Splits {@code sequence} into string components and returns them as an immutable list. If you
       * want an {@link Iterable} which may be lazily evaluated, use {@link #split(CharSequence)}.
       *
       * @param sequence the sequence of characters to split
       * @return an immutable list of the segments split from the parameter
       * @since 15.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Splitter.java

        return strategy.iterator(this, sequence);
      }
    
      /**
       * Splits {@code sequence} into string components and returns them as an immutable list. If you
       * want an {@link Iterable} which may be lazily evaluated, use {@link #split(CharSequence)}.
       *
       * @param sequence the sequence of characters to split
       * @return an immutable list of the segments split from the parameter
       * @since 15.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/util/cdi/cdi.go

    		return "", "", device
    	}
    
    	parts := strings.SplitN(device, "=", 2)
    	if len(parts) != 2 || parts[0] == "" || parts[1] == "" {
    		return "", "", device
    	}
    
    	name := parts[1]
    	vendor, class := parseQualifier(parts[0])
    	if vendor == "" {
    		return "", "", device
    	}
    
    	return vendor, class, name
    }
    
    // parseQualifier splits a device qualifier into vendor and class.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. pkg/test/util/yml/parts.go

    	"sigs.k8s.io/yaml"
    )
    
    const (
    	joinSeparator = "\n---\n"
    )
    
    // Split where the '---' appears at the very beginning of a line. This will avoid
    // accidentally splitting in cases where yaml resources contain nested yaml (which
    // is indented).
    var splitRegex = regexp.MustCompile(`(^|\n)---`)
    
    // SplitYamlByKind splits the given YAML into parts indexed by kind.
    func SplitYamlByKind(content string) map[string]string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/traffic-split-2.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 387 bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild.split-docs.gradle.kts

    Bo Zhang <******@****.***> 1612853523 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 09 06:52:03 UTC 2021
    - 824 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/traffic-split-1.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 403 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/traffic-splitting/traffic-split-3.yaml

    Alexander Zielenski <******@****.***> 1697824555 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 348 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_splits.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-tpu-colocate-splits | FileCheck %s
    
    // CHECK-LABEL: func @colocate_split_with_pred
    func.func @colocate_split_with_pred() {
      // CHECK: Split
      // CHECK-SAME: _class = ["loc:@class"]
      tf_executor.graph {
        %c, %control0 = tf_executor.island wraps "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 18:44:34 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top