Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for phase_2_patterns (0.47 sec)

  1. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

      }
    
      RewritePatternSet phase_2_patterns(&getContext());
      TFL::populateWithGenerated(phase_2_patterns);
      phase_2_patterns.add<quant::FoldTrivalRequantizeOp<QuantizeOp>,
                           RemoveVolatileOps<kPreserveInputsAndOutputs>,
                           FoldTransposeOp, FoldReshapeOp>(ctx);
      (void)applyPatternsAndFoldGreedily(func, std::move(phase_2_patterns));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      }
      phase_2_patterns.add<TF::ConvertTFEinsumOp, ConvertTFStridedSlice,
                           ConvertRfftToRfft2d, RemoveIdentity>(ctx);
      phase_2_patterns.add<ConvertTFConv2D, ConvertTFDepthwiseConv2dNative>(
          ctx, allow_bf16_and_f16_type_legalization_);
      // Remove redundant reshape ops.
      TF::ReshapeOp::getCanonicalizationPatterns(phase_2_patterns, ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      (void)applyPatternsAndFoldGreedily(func, std::move(patterns));
    
      // Fuse the binary ops with the following ops.
      RewritePatternSet phase_2_patterns(&getContext());
      TFL::populateWithGenerated(phase_2_patterns);
      phase_2_patterns.add<
          UndoBroadcastFullyConnectedBiasAddWithQDQs, FuseLogSoftmax,
          ScalarizeSplatConstantForAdd, ScalarizeSplatConstantForSub,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top