Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for Decomposes (0.13 sec)

  1. src/cmd/compile/internal/ssa/compile.go

    	{"generic deadcode", "check bce"},
    	// decompose builtin now also cleans up after expand calls
    	{"expand calls", "decompose builtin"},
    	// don't run optimization pass until we've decomposed builtin objects
    	{"decompose builtin", "late opt"},
    	// decompose builtin is the last pass that may introduce new float ops, so run softfloat after it
    	{"decompose builtin", "softfloat"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

       *   notBefore      Time,
       *   notAfter       Time
       * }
       * ```
       */
      private val validity: BasicDerAdapter<Validity> =
        Adapters.sequence(
          "Validity",
          time,
          time,
          decompose = {
            listOf(
              it.notBefore,
              it.notAfter,
            )
          },
          construct = {
            Validity(
              notBefore = it[0] as Long,
              notAfter = it[1] as Long,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

    }
    
    Status TFRDecomposeContext::DecomposeGraph(mlir::ModuleOp user_module) {
      // Call the decompose passes by using the external symbol table.
      if (failed(pm_.run(user_module))) {
        return errors::Internal("Failed to run the decompose passes.");
      }
      return absl::OkStatus();
    }
    
    // Constructor of the decompose context.
    TFRDecomposeContext::TFRDecomposeContext(mlir::ModuleOp tfr_module)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/location.go

    // variable that has been decomposed into multiple stack slots.
    // As an example, a string could have the following configurations:
    //
    //	          stack layout              LocalSlots
    //
    //	Optimizations are disabled. s is on the stack and represented in its entirety.
    //	[ ------- s string ---- ] { N: s, Type: string, Off: 0 }
    //
    //	s was not decomposed, but the SSA operates on its parts individually, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/decompose_resource_op.mlir

    // RUN: tf-tfrt-opt -tf-executor-to-tfrt-pipeline=decompose-resource-ops=true %s | FileCheck %s --dump-input=fail
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 293 : i32}} {
    
    // CHECK-LABEL: func @gather
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain
    // CHECK-SAME: [[arg0:%.*]]: !tfrt_fallback.tf_tensor, [[arg1:%.*]]: !tfrt_fallback.tf_tensor)
    // CHECK: [[const:%.*]] = tfrt_fallback_async.const_dense_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // resource ops can be decomposed.
      pm.addPass(tensorflow::tf2xla::internal::CreateXlaClusterFormationPass());
      // Running canonicalizer before decomposing resource ops in cluster helps the
      // latter pass to converge faster as it does not have to spend time folding
      // away dead ops.
      pm.addNestedPass<FuncOp>(mlir::createCanonicalizerPass());
      // Decompose resource ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  7. tensorflow/compiler/mlir/lite/quantization/numerical_utils.h

    #include <utility>
    
    #include "absl/types/optional.h"
    
    namespace mlir {
    namespace quant {
    
    using QuantizedMultiplier = std::pair<int32_t, int32_t>;
    using QuantizedRange = std::pair<int32_t, int32_t>;
    
    // Decompose double precision multiplier to integer multiplier and exponent.
    //    double_multiplier = int_multiplier * 2 ^ (-31 + exponent)
    // int_multiplier will be range of (2^31, 2^30].
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

      %4 = tfr.call @tf__risc_maximum(%value, %3) : (!tfr.tensor, !tfr.tensor) -> !tfr.tensor
      tfr.return %4  : !tfr.tensor
    }
    
    // TODO(fengliuai): use shape dialect to manipulate the shape then this can be decomposed further.
    tfr.func @tf__my_expand_dims(%value: !tfr.tensor, %axis: i32 {tfr.name="axis"}) -> !tfr.tensor {
      %axis_cst = "tfr.constant_tensor"(%axis) : (i32) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.h

    #include "tensorflow/core/common_runtime/eager/eager_op_rewrite_registry.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tfr {
    
    // An optimization pass that decompose the composite ops in a module according
    // to the decomposition library. Currently the decomposition library is loaded
    // each time the pass runs. A special environment variable is set to locate the
    // decomposition library.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/dec64.rules

    (Arg {n} [off]) && is64BitInt(v.Type) && !config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin") =>
      (Int64Make
        (Arg <typ.Int32> {n} [off+4])
        (Arg <typ.UInt32> {n} [off]))
    (Arg {n} [off]) && is64BitInt(v.Type) && !config.BigEndian && !v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin")  =>
      (Int64Make
        (Arg <typ.UInt32> {n} [off+4])
        (Arg <typ.UInt32> {n} [off]))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
Back to top