Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasOneUse (0.17 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (FloatValueEquals<"0.797884583"> $Cst_sqrt_2dPi),
       (FloatValueEquals<"0.044715"> $Coeff),
       (HasOneUse $mul_out),
       (HasOneUse $add_out),
       (HasOneUse $tanh_out),
       (HasOneUse $mul_out1),
       (HasOneUse $add_out1),
       (HasOneUse $mul_out2),
       (HasOneUse $pow_out),
      ]>;
    
    // Alternate pattern for GeluApproximate (see different order for mul), replaces
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

          LLVM_DEBUG(
              llvm::dbgs()
              << "Failed to match. Output type is expected to be a float. Got: "
              << output_element_type << ".\n");
          return failure();
        }
    
        if (!op->hasOneUse()) {
          LLVM_DEBUG(llvm::dbgs()
                     << "Failed to match op - doesn't have a single use.\n");
          return failure();
        }
    
        auto subtract_op = dyn_cast_or_null<stablehlo::SubtractOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top