Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MarkFunctionsNoinlinePass (0.21 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/mark_functions_noinline.cc

    // marked noinline should be specified by the `noinline-functions` option.
    class MarkFunctionsNoinlinePass
        : public PassWrapper<MarkFunctionsNoinlinePass,
                             OperationPass<func::FuncOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(MarkFunctionsNoinlinePass)
    
      explicit MarkFunctionsNoinlinePass()
          : MarkFunctionsNoinlinePass(
                /*noinline_functions=*/ArrayRef<std::string>{}) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 18 02:52:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

          mlir::quant::CreateMergeDuplicateResourceOpsPass());
    
      // Used to clean up the "tf._noinliner" attribute that is previously used to
      // prevent certain functions from being inlined (see
      // `MarkFunctionsNoinlinePass`). InlinerPass must not come after this pass.
      pm.addPass(mlir::TF::CreateStripNoinlineAttributePass());
    }
    
    absl::StatusOr<std::optional<SaverDef>> CreateSaverDef(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top