Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,618 for converts (0.19 sec)

  1. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.h

    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tensorflow {
    
    // Converts the given saved_model(either v1 or v2) to a TF Lite FlatBuffer
    // string according to the given model flags, toco flags and tags. Returns error
    // status if it fails to convert the input.
    Status ConvertSavedModelToTFLiteFlatBuffer(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Converter.java

     * </ul>
     *
     * <p>Using a converter:
     *
     * <ul>
     *   <li>Convert one instance in the "forward" direction using {@code converter.convert(a)}.
     *   <li>Convert multiple instances "forward" using {@code converter.convertAll(as)}.
     *   <li>Convert in the "backward" direction using {@code converter.reverse().convert(b)} or {@code
     *       converter.reverse().convertAll(bs)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.h

    #include "tensorflow/lite/toco/model_flags.pb.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tensorflow {
    
    // Converts the given GraphDef to a TF Lite FlatBuffer string according to the
    // given model flags, toco flags and debug information. Returns error status if
    // it fails to convert the input.
    absl::Status ConvertGraphDefToTFLiteFlatBuffer(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/FailureFactory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.problems.failure;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Converts exceptions to their content-based {@link Failure} representation.
     *
     * @see Failure
     */
    @ServiceScope(Scope.Global.class)
    public interface FailureFactory {
    
        Failure create(Throwable failure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 986 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Delta is not necessarily the same type as start and limit.
        auto abs_cast =
            rewriter.create<mhlo::ConvertOp>(op.getLoc(), compute_type, abs);
        auto delta_cast =
            rewriter.create<mhlo::ConvertOp>(op.getLoc(), compute_type, delta);
    
        // Compute the total number of integer steps and convert to the HLO
        // dimension tensor.
        auto normalized =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTest.kt

    import org.gradle.internal.declarativedsl.parsing.ParseTestUtil.Parser.parseAsTopLevelBlock
    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object DomTest {
        @Test
        fun `converts a simple language tree to document`() {
            val tree = parseAsTopLevelBlock(
                """
                myFun {
                    a = 1
                    b = f("x", z.f("y"))
                    c = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    def FloatOrDefaultCompare : Constraint<CPred<
      "!$0 || $0.getValue() == ::mlir::mhlo::ComparisonType::FLOAT">>;
    def SameTypeOrDefaultCompare : Constraint<CPred<
      "SameTypeOrDefaultCompare($0, $1)">>;
    
    // Converts a dag of HLOs representing banker rounding (round x.5 to nearest
    // even) to tf.round. This only supports float types because mhlo.floor only
    // supports float types. tf.round with integer input type will become an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/utils/bfloat16_type.h

    #include "mlir/IR/Types.h"  // from @llvm-project
    
    namespace mlir::quant::stablehlo {
    
    // Returns true if the type or its element type is a float type with bit_width
    // > 16.
    bool IsLargeFloatType(Type type);
    
    // Converts large float type to bfloat16. Otherwise returns original type.
    Type ToBfloat16Type(Type type);
    
    }  // namespace mlir::quant::stablehlo
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 23:51:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/strconv/ctoa.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strconv
    
    // FormatComplex converts the complex number c to a string of the
    // form (a+bi) where a and b are the real and imaginary parts,
    // formatted according to the format fmt and precision prec.
    //
    // The format fmt and precision prec have the same meaning as in [FormatFloat].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // variables instead).
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateRemoveVariableInitializationByConstPass();
    
    // Creates a pass that converts Tensorflow Xla ops to non-Xla ops.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateConvertTfXlaOpToTfOpPass();
    
    // Creates a pass that converts TPU models for CPU by removing TPU related ops
    // such as TPUPartitionedCall, TPUReplicatedOp, etc. The TF quantizer does not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top