Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LegalizeTensorListPass (0.45 sec)

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

    }
    
    // Only legalize TensorFlow TensorList ops if all TensorList ops are supported
    // natively.
    class LegalizeTensorListPass
        : public impl::LegalizeTensorListPassBase<LegalizeTensorListPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(LegalizeTensorListPass)
    
      void runOnOperation() override {
        mlir::ModuleOp module = getOperation();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Hoist while op regions into functions";
      let constructor = "CreateWhileOutlinePass()";
      let dependentDialects = ["TF::TensorFlowDialect"];
    }
    
    def LegalizeTensorListPass : Pass<"tfl-legalize-tensorlist", "mlir::ModuleOp"> {
      let summary = "Legalize TensorFlow tensorlist ops to TensorFlow Lite custom.";
      let constructor = "CreateLegalizeTensorListPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top