Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 533 for Transformed (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/preprocess_op.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-preprocess-op | FileCheck %s
    
    module {
      // For UniformQuantized depthwise convolution, tensor shape should have
      // transformed from [H,W,C,M] to [H,W,1,CxM],
      func.func @depthwise_conv(%arg0: tensor<1x3x4x3xf32>) -> (tensor<*xf32>) {
        %cst_0 = "tf.Const"() {value = dense<0.000000e+00> : tensor<6xf32>} : () -> tensor<6xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

          // Uniform Quantized op requires weights of tf.DepthwiseConv2dNative to
          // be transformed from [H,W,C,M] to [H,W,1,CxM] where
          // H=height,W=width,C=channel,M=multiplier. Therefore, a reshape op is
          // inserted between the constant op and the function op so that the
          // constant is safely transformed for the multi-use cases as well. Note
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedProjectArtifactSet.java

    import org.gradle.internal.operations.BuildOperationQueue;
    import org.gradle.internal.operations.RunnableBuildOperation;
    
    import java.io.File;
    import java.util.Collection;
    
    /**
     * An artifact set containing transformed project artifacts.
     */
    public class TransformedProjectArtifactSet implements TransformedArtifactSet, FileCollectionInternal.Source, ResolvedArtifactSet.Artifacts {
    
        private final ComponentVariantIdentifier targetVariant;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/LocalSnapshotMetadataGenerator.java

    import org.eclipse.aether.metadata.Metadata;
    import org.eclipse.aether.util.ConfigUtils;
    
    /**
     * Maven local GAV level metadata generator.
     * <p>
     * Local snapshot metadata contains non-transformed snapshot version.
     */
    class LocalSnapshotMetadataGenerator implements MetadataGenerator {
    
        private final Map<Object, LocalSnapshotMetadata> snapshots;
    
        private final Date timestamp;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/InputArtifactDependencies.java

     *
     * <p>
     *     For example, when a project depends on {@code spring-web}, when the project is transformed (i.e. the project is the input artifact),
     *     the input artifact dependencies are the file collection containing the {@code spring-web} JAR and all its dependencies like e.g. the {@code spring-core} JAR.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         * to tasks that use the new provider for input values.
         * </p>
         *
         * @param transformer The transformer to apply to values. May return {@code null}, in which case the provider will have no value.
         * @since 4.3
         */
        <S> Provider<S> map(Transformer<? extends @org.jetbrains.annotations.Nullable S, ? super T> transformer);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. test/codegen/strings.go

    	// amd64:`LEAQ\ttype:\[3\]uint8`
    	// amd64:`CALL\truntime\.newobject`
    	// amd64:-`.*runtime.stringtoslicebyte`
    	return []byte("foo")
    }
    
    // Loading from read-only symbols should get transformed into constants.
    func ConstantLoad() {
    	// 12592 = 0x3130
    	//    50 = 0x32
    	// amd64:`MOVW\t\$12592, \(`,`MOVB\t\$50, 2\(`
    	//   386:`MOVW\t\$12592, \(`,`MOVB\t\$50, 2\(`
    	//   arm:`MOVW\t\$48`,`MOVW\t\$49`,`MOVW\t\$50`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:17:28 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // the user did not explicitly specify.
    QuantizationConfig PopulateDefaults(
        const QuantizationConfig& user_provided_config);
    
    // Returns a copy of `QuantizationConfig` where presets are expanded and
    // transformed into other fields in `QuantizationConfig`.
    //
    // The expansion rules are as follows:
    // * StaticRangePtqPreset
    //   - The preset's `representative_datasets` field will be transferred to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * foo -&gt; foo.bar
         * foo.baz -&gt; foo.bar
         *
         * @param filePath the file path to transform
         * @param extension the extension to use in the transformed path
         * @return the transformed path
         */
        public static String withExtension(String filePath, String extension) {
            if (filePath.toLowerCase(Locale.ROOT).endsWith(extension)) {
                return filePath;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            assertTransformChain(result.first(), sourceVariant, compatible, transform2)
    
            and:
            // sourceVariant can be transformed by a transform starting with fromSource attributes
            1 * attributeMatcher.isMatching(sourceVariant.getAttributes(), fromSource) >> true
            // otherVariant cannot be transformed by a transform starting with fromSource attributes
            1 * attributeMatcher.isMatching(otherVariant.getAttributes(), fromSource) >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
Back to top