Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for toWords (0.18 sec)

  1. tensorflow/compiler/mlir/lite/transforms/passes.h

    class OperationPass;
    class Type;
    
    namespace TFL {
    
    // Creates an instance of the TensorFlow Lite dialect LegalizeTF pass.
    // When the given run_tfl_runtime_verification value is true, it will check each
    // TFL builtin op towards the TFL runtime capability and the incompatible TF ops
    // will be left in the graph without getting legalized. If `preserve_assert_op`
    // is true, the TF::AssertOp will not be removed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

        //       -> not_quant_op
        //
        // the transformation will be:
        // q_const -> dequant_op -> while -> quant_op
        //                       -> not_quant_op
        // And the dequant_op op will propagate towards quant_op only.
        if (failed(quantizeOps(rewriter, op, weight_component_spec.value()))) {
          return failure();
        }
        return success();
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

            module.assertPublished()
            module.parsedModuleMetadata.variants.size() == 1
            def api = module.parsedModuleMetadata.variant('api')
            api.dependencies[0].coords == 'group.a:lib_a:4.5'
            api.dependencies[1].coords == 'group.b:utils:0.01'
        }
    
        def "publishes component with strict and prefer dependencies"() {
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

      //   running pods are terminated.
      // - Ignore: indicates that the counter towards the .backoffLimit is not
      //   incremented and a replacement pod is created.
      // - Count: indicates that the pod is handled in the default way - the
      //   counter towards the .backoffLimit is incremented.
      // Additional values are considered to be added in the future. Clients should
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            ArtifactCoordinateFactory acf = getService(ArtifactCoordinateFactory.class);
            List<ArtifactCoordinate> coords =
                    Arrays.stream(artifacts).map(a -> acf.create(this, a)).collect(Collectors.toList());
            return resolveArtifacts(coords);
        }
    
        /**
         * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/cpu.go

    		if v == u {
    			return k, nil
    		}
    	}
    	return "", fmt.Errorf("unknown suffix:%x", u)
    }
    
    const (
    	RM_RNE uint8 = iota // Round to Nearest, ties to Even
    	RM_RTZ              // Round towards Zero
    	RM_RDN              // Round Down
    	RM_RUP              // Round Up
    	RM_RMM              // Round to Nearest, ties to Max Magnitude
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2_test.go

    		expireRestored   bool
    		expectedDataDir  string
    	}{
    		{ // object versions with inlined data don't count towards shared data directory
    			versionID: mustGetUUID(),
    			dataDir:   d0,
    			data:      data,
    			shares:    0,
    		},
    		{ // object versions with inlined data don't count towards shared data directory
    			versionID: mustGetUUID(),
    			dataDir:   d1,
    			data:      data2,
    			shares:    0,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

    """
        }
    
        def publication(SoftwareComponentInternal component, ModuleVersionIdentifier coords, VersionMappingStrategyInternal mappingStrategyInternal = null, boolean withBuildId = false) {
            def publication = Stub(PublicationInternal)
            publication.component >> Providers.of(component)
            publication.coordinates >> coords
            publication.versionMappingStrategy >> mappingStrategyInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    include::sample[dir="snippets/ide/eclipse/groovy",files="build.gradle[tags=test-sources]"]
    ====
    
    TIP: Consider migrating away from manual definition of additional test source sets and towards the use of the <<jvm_test_suite_plugin#jvm_test_suite_plugin,JVM Test Suite Plugin>> in scenarios like this.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            Set<Capability> capabilities,
            ProjectInternal project,
            // The elements configurations' roles should always be consumable only, but
            // some users of this class are still migrating towards that. In 9.0, we can remove this
            // parameter and hard-code the elements configurations' roles to consumable only.
            boolean useMigrationRoleForElementsConfigurations,
            boolean extendProductionCode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top