Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for fusion (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    include "mlir/Pass/PassBase.td"
    
    // TF dialect passes.
    
    def TensorflowGPUFusion : Pass<"tf-gpu-op-fusion", "mlir::func::FuncOp"> {
      let summary = "Fusion optimization for GPU targets";
      let description = [{
        This pass is performing fusion specific to GPU targets. This is an ad-hoc
        pass for now, but should be integrated with some notion of "target" in the
        MLIR pipeline in the future.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            /*value=*/constant_op.getValue());
      }
    }
    
    // Creates a new `tfl.qconst` op for the bias. The bias values are 0s, because
    // this bias a dummy bias (note that bias fusion is not considered for this
    // transformation). The quantization scale for the bias is input scale *
    // filter scale. `filter_const_op` is used to retrieve the filter scales and
    // the size of the bias constant.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (llvm::isa<AddOp, SubOp>(binary_op)) {
          auto padding = fc_op->template getAttrOfType<StringAttr>("padding");
          if (padding && padding.getValue() != "VALID") return failure();
    
          // The fusion of add/sub is actually applying the following
          // transformation:
          // w * (x + c) + b => w * x + (w * c + b)
          // so we have to update the bias.
          if (llvm::isa<SubOp>(binary_op)) cst_value.changeSign();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // -----
    
    // Tests that a fused per-channel quantized `stablehlo.dot_general` is properly
    // lowered to fused `tfl.fully_connected`.
    // TODO: b/309896242 - Add more support for dynamic bias fusion cases.
    
    func.func @dot_general_with_bias_same_shape_srq(%arg0: tensor<1x1024x!quant.uniform<i8:f32, 1.000000e+0:0>>) -> (tensor<1x3x!quant.uniform<i8:f32, 3.000000e+00:-127>>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      auto operands = adaptor.getOperands();
      // TODO(b/142478136): Handle fused ops.
      if (getFusedActivationFunction() != "NONE") return {};
    
      // This function is performance critical for op fusion patterns, e.g.
      // FuseBinaryOpToPrecedingAffine and FuseMulOrDivWithConv2dOrDepthwiseConv2d.
      // So a few specializations are provided to evaluate the math operation
      // more efficiently.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    }
    
    // fusedJump determines whether p can be fused with a subsequent conditional jump instruction.
    // If it can, we return true followed by the total size of the fused jump. If it can't, we return false.
    // Macro fusion rules are derived from the Intel Optimization Manual (April 2019) section 3.4.2.2.
    func fusedJump(p *obj.Prog) (bool, uint8) {
    	var fusedSize uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    from the value obtained by executing and rounding the instructions individually.
    An explicit floating-point type <a href="#Conversions">conversion</a> rounds to
    the precision of the target type, preventing fusion that would discard that rounding.
    </p>
    
    <p>
    For instance, some architectures provide a "fused multiply and add" (FMA) instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // fans : 2014-11-07 ZDNS International Limited
    fans
    
    // farm : 2013-11-07 Binky Moon, LLC
    farm
    
    // farmers : 2015-07-09 Farmers Insurance Exchange
    farmers
    
    // fashion : 2014-07-03 Registry Services, LLC
    fashion
    
    // fast : 2014-12-18 Amazon Registry Services, Inc.
    fast
    
    // fedex : 2015-08-06 Federal Express Corporation
    fedex
    
    // feedback : 2013-12-19 Top Level Spectrum, Inc.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * ListenableFuture instances
       */
    
      /**
       * A future in {@link TestFutureBatch} that also has a name for debugging purposes and a {@code
       * finisher}, a task that will complete the future in some fashion when it is called, allowing for
       * testing both before and after the completion of the future.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * ListenableFuture instances
       */
    
      /**
       * A future in {@link TestFutureBatch} that also has a name for debugging purposes and a {@code
       * finisher}, a task that will complete the future in some fashion when it is called, allowing for
       * testing both before and after the completion of the future.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top