Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,618 for converts (0.14 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.td

    }
    
    def UniformQuantizedStableHloToTflPass
        : Pass<"uniform-quantized-stablehlo-to-tfl", "mlir::func::FuncOp"> {
      let summary = "Converts StableHLO ops using uniform quantized types to equivalent TFL ops.";
      let constructor = "mlir::odml::CreateUniformQuantizedStableHloToTflPass()";
      let description = [{
        Converts StableHLO ops that accept or return uniform quantized types to
        equivalent ops in the TFLite dialect.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-base/src/test/groovy/org/gradle/caching/internal/origin/OriginMetadataFactoryTest.groovy

        def factory = new OriginMetadataFactory(
            buildInvocationId,
            { it.gradleVersion = "3.0" }
        )
        def buildCacheKey = TestHashCodes.hashCodeFrom(1234)
    
        def "converts to origin metadata"() {
            def origin = new Properties()
            def writer = factory.createWriter("identity", CacheableEntity, buildCacheKey, Duration.ofMillis(10))
            def baos = new ByteArrayOutputStream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/matcher/template.go

    func PathTemplateMatcher(path string) *uri_template.UriTemplateMatchConfig {
    	return &uri_template.UriTemplateMatchConfig{
    		PathTemplate: sanitizePathTemplate(path),
    	}
    }
    
    // sanitizePathTemplate converts the path template into a valid envoy uri template.
    // https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/path/match/uri_template/v3/uri_template_match.proto
    // If path contains "{*}", it will be replaced with "*".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.td

    // Declare bridge passes that perform legalization and/or lowering.
    
    include "mlir/Pass/PassBase.td"
    
    def ConvertTFQuantOpsToMHLO : Pass<"quant-convert-tf-quant-ops-to-mhlo", "mlir::func::FuncOp"> {
      let summary = "Convert TF Quant ops to MHLO quantizated ops.";
    
      let description = [{
        Convert TF Quant ops to MHLO quant ops.
      }];
    
      let constructor = "mlir::quant::stablehlo::CreateConvertTFQuantOpsToMHLOPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/PlatformInOutputNormalizer.groovy

    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.platform.internal.DefaultBuildPlatform
    
    /**
     * This normalizer converts toolchain error message so it doesn't contain platform-specific information.
     */
    class PlatformInOutputNormalizer implements OutputNormalizer {
        def static internalOs = OperatingSystem.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. pkg/config/schema/gvk/resources.gen.go

    }
    
    // MustToGVR converts a GVK to a GVR, and panics if it cannot be converted
    // Warning: this is only safe for known types; do not call on arbitrary GVKs
    func MustToGVR(g config.GroupVersionKind) schema.GroupVersionResource {
    	r, ok := ToGVR(g)
    	if !ok {
    		panic("unknown kind: " + g.String())
    	}
    	return r
    }
    
    // FromGVR converts a GVR to a GVK.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.td

      [(HasRankOf<1> $add_rhs_value),
       (HasEqualElementSize<[-1], [0]> $conv_out, $add_rhs)], [], (addBenefit -1)>;
    
    // Convert conv+sub+mul pattern to conv+mul+add.
    // (conv - sub) * mul -> conv * mul + (-sub) * mul
    //
    // This is needed to support Conv+BatchNorm pattern from Jax models converted
    // using jax2tf w/o native serialization. Note that Jax2tf patterns always
    // extend bias shapes to a rank of 4, e.g. 1x1x1x5.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:24:59 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/PromptOutputEvent.java

            // Add a newline at the start of each question
            output.println();
            output.text(getPrompt());
        }
    
        /**
         * Converts the given text into the response object, or returns a new prompt to display to the user.
         */
        public abstract PromptResult<?> convert(String text);
    
        public static class PromptResult<T> {
            public final T response;
            public final String newPrompt;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.h

    namespace mlir {
    
    // Converts a TensorFlow model (either from a SavedModel or an MLIR module) to a
    // StableHLO MLIR module.
    //
    // Args:
    //  input_path: The path to the input TensorFlow SavedModel or MLIR module.
    //  context: The MLIR context to use for parsing or creating the MLIR module.
    //  exported_model_signatures: List of exported model signatures (strings) to
    //    convert.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/c/eager/dlpack.cc

    void DLManagedTensorDeleter(DLManagedTensor* arg) {
      TfDlManagedTensorCtx* owner =
          static_cast<TfDlManagedTensorCtx*>(arg->manager_ctx);
      owner->reference.Unref();
      delete owner;
    }
    
    // Converts TF_DATAType to DLPack data type.
    DLDataType GetDlDataType(TF_DataType data_type, TF_Status* status) {
      DLDataType dtype;
      dtype.lanes = 1;
      dtype.bits = TF_DataTypeSize(data_type) * 8;
      switch (data_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top