Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for multiplier (0.37 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    /// elements of the divisor are non-zero.
    
    /// Similarly, if the op is tf.MulNoNan and the multiplier is a constant tensor
    /// (with all the elements of any allowed type: float or complex), rewrite the
    /// op to the multiplier if all the elements of the multiplier are zero and to
    /// tf.Mul if all the elements of the multiplier are non-zero.
    
    /// Replace the given op with an op of type `RetT`. Upon calling
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            dyn_cast_or_null<TFL::MulOp>(fc_op.getInput().getDefiningOp());
        if (!mul_op) return failure();
        if (mul_op.getFusedActivationFunction() != "NONE") return failure();
    
        // Don't match muls where the multiplier constant is not 1D.
        {
          auto multiplier_shape = mlir::cast<ShapedType>(mul_op.getRhs().getType());
          if (!multiplier_shape.hasStaticShape()) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        if (is_depthwise) {
          // The total number of depthwise convolution output channels will be
          // equal to input channel * `depth_multiplier`.
          const int64_t multiplier = dimension_numbers.getOutputFeatureDimension() /
                                     dimension_numbers.getInputFeatureDimension();
    
          rewriter.replaceOpWithNewOp<TFL::DepthwiseConv2DOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        // results for depthwise transpose convolutions with non-1 channel
        // multiplier.
        if ((kernel_output_channels / feature_group_count) != 1) {
          return rewriter.notifyMatchFailure(
              conv_op,
              "Unsupported detphwise transpose convolution with non-1 channel "
              "multiplier");
        }
    
        // Slicing with dynamic offsets (helper method advised)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      const int64_t outer_size = std::accumulate(
          outer_dims.begin(), outer_dims.end(), 1, std::multiplies<int64_t>());
    
      const auto base_inner_dims = output_type.getShape().drop_front(axis + 1);
      const int64_t base_inner_size =
          std::accumulate(base_inner_dims.begin(), base_inner_dims.end(), 1,
                          std::multiplies<int64_t>());
    
      // Splits each input operand into outer_size pieces and combines them in
    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. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // Verifies that,
    //
    // - input has at least rank 1
    // - multiples is rank 1
    // - multiples.size() == input.rank()
    // - input.rank() == output.rank()
    // - Elements in multiples are non-negative
    // - input.shape[i] * multiples[i] == output.shape[i]
    //   for i in [0, input.rank() - 1]
    
    LogicalResult TileOp::verify() {
      TileOp op = *this;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            run "resolve"
    
            then:
            executed(":lib:jar1", ":app:resolve")
    
            and:
            output.count("Transforming") == 0
        }
    
        def "transforms can be applied to multiple files with the same name"() {
            given:
            buildFile << """
                def f = file("lib.jar")
                f.text = "1234"
    
                dependencies {
                    compile files(f)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    	op_LM      uint32 = 0x9800 // FORMAT_RS1        LOAD MULTIPLE (32)
    	op_LMD     uint32 = 0xEF00 // FORMAT_SS5        LOAD MULTIPLE DISJOINT
    	op_LMG     uint32 = 0xEB04 // FORMAT_RSY1       LOAD MULTIPLE (64)
    	op_LMH     uint32 = 0xEB96 // FORMAT_RSY1       LOAD MULTIPLE HIGH
    	op_LMY     uint32 = 0xEB98 // FORMAT_RSY1       LOAD MULTIPLE (32)
    	op_LNDBR   uint32 = 0xB311 // FORMAT_RRE        LOAD NEGATIVE (long BFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary =
        "Replicate TensorList init ops for correct shape assignments in shape inference";
    
      let description = [{
        If we pass same TensorList to a while op as multiple arguments or just use
        the same TensorList at multiple places and assign different
        TensorListSetItem to elements of TensorList, the shape inference is then
        unable to identify the Shape of these args and thus the input TensorList
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          "tf.C"() : () -> ()
          tf_device.return
        }) {num_cores_per_replica = 1, topology =  "", device_assignment =  []} : () -> ()
        func.return
      }
    
      // Tests extraction of a single outside compiled cluster with multiple ops and no input or output dependecies.
    
      // CHECK-LABEL: func @nodep_single_cluster_multiple_ops_outside_compilation
      func.func @nodep_single_cluster_multiple_ops_outside_compilation() -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
Back to top