Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for filterMap (0.08 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        // Make sure the filter is a constant or a constant transpose.
        Operation* filter_op = filter.getDefiningOp();
        const bool is_constant = isa_and_nonnull<stablehlo::ConstantOp>(filter_op);
        const bool is_constant_transpose =
            isa_and_nonnull<stablehlo::TransposeOp>(filter_op) &&
            isa_and_nonnull<stablehlo::ConstantOp>(
                filter_op->getOperand(0).getDefiningOp());
        if (!is_constant && !is_constant_transpose) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
Back to top