Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 89 for SplitV (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/xla_broadcast.mlir

    // RUN: tf-opt %s -split-input-file -tf-xla-broadcast | FileCheck %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/internal/jvm/JavaVersionParser.java

        public static int parseMajorVersion(String fullVersion) {
            int firstNonVersionCharIndex = findFirstNonVersionCharIndex(fullVersion);
    
            String[] versionStrings = fullVersion.substring(0, firstNonVersionCharIndex).split("\\.");
            List<Integer> versions = convertToNumber(fullVersion, versionStrings);
    
            if (isLegacyVersion(versions)) {
                assertTrue(fullVersion, versions.get(1) > 0);
                return versions.get(1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/build.gradle.kts

    }
    
    description = "Gradle Tooling API - the programmatic API to invoke Gradle"
    
    gradlebuildJava.usedInToolingApi()
    
    tasks.named<Jar>("sourcesJar") {
        // duplicate package-info.java because of split packages
        duplicatesStrategy = DuplicatesStrategy.EXCLUDE
    }
    
    shadedJar {
        shadedConfiguration.exclude(mapOf("group" to "org.slf4j", "module" to "slf4j-api"))
        keepPackages = listOf("org.gradle.tooling")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      // There should be two ops: the split and add in the original model.
      EXPECT_THAT(*readonly_subgraph->operators(), SizeIs(2));
      EXPECT_THAT(subgraph->operators, SizeIs(2));
      const auto& split = subgraph->operators[0];
      const auto& add = subgraph->operators[1];
      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[split->opcode_index].get()),
                  Eq(BuiltinOperator_SPLIT));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":time"))
        api(project(":toolchains-jvm-shared"))
        api(project(":tooling-api"))
    
        // This project contains the Gradle client, daemon and tooling API provider implementations.
        // It should be split up, but for now, add dependencies on both the client and daemon pieces
        api(project(":client-services"))
        api(project(":daemon-services"))
    
        api(libs.guava)
        api(libs.jsr305)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def TPUColocateSplitsPass : Pass<"tf-tpu-colocate-splits", "mlir::func::FuncOp"> {
      let summary = "Colocates each Split op with its predecessor";
      let constructor = "TFTPU::CreateTPUColocateSplitsPass()";
      let description = [{
        It is beneficial for performance to assign a `Split` op to the same device
        as its predecessor. This is because the weight of cut edges is always
        minimized when the `Split` is with its predecessor. This colocation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpec.java

                    }
                };
            }
    
            List<Spec<GradleVersion>> specs = new ArrayList<Spec<GradleVersion>>();
            String[] patterns = trimmed.split("\\s+");
            for (String value : patterns) {
                if (value.startsWith(">=")) {
                    final GradleVersion minVersion = getVersion(value, 2);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. manifests/addons/gen.sh

      helm3 template grafana grafana \
        --namespace istio-system \
        --version "${GRAFANA_VERSION}" \
        --repo https://grafana.github.io/helm-charts \
        -f "${WD}/values-grafana.yaml"
    
      # Set up grafana dashboards. Split into 2 and compress to single line json to avoid Kubernetes size limits
      compressDashboard "pilot-dashboard.gen.json"
      compressDashboard "istio-performance-dashboard.json"
      compressDashboard "istio-workload-dashboard.json"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		if labelValue == "none" || labelValue == "~" || strings.HasSuffix(labelValue, "/none") {
    			return nil, true
    		}
    		namespacedName := strings.Split(labelValue, "/")
    		switch len(namespacedName) {
    		case 1:
    			return &krt.Named{
    				Name:      namespacedName[0],
    				Namespace: defaultNamespace,
    			}, false
    		case 2:
    			return &krt.Named{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

        // Note that all tests use a relative path to the script because its absolute path may contain
        // spaces and it breaks logic String.execute which splits the given string at spaces without
        // any options to escape the space.
        ShellScript baseScript = ShellScript.builder().printEnvironmentVariable('FOOBAR').printWorkingDir().writeTo(testDirectory, "test")
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top