Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddLiftTfliteFlexOpsPatterns (0.33 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.h

    namespace TFL {
    
    // Creates an instance of the lift TFLite Flex ops pass that lifts TFLite Flex
    // ops into TF dialect operations.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLiftTfliteFlexOpsPass();
    
    void AddLiftTfliteFlexOpsPatterns(MLIRContext *context,
                                      RewritePatternSet &patterns);
    
    }  // namespace TFL
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 13 18:29:12 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        func::FuncOp func = getOperation();
    
        mlir::RewritePatternSet patterns(context);
        AddLiftTfliteFlexOpsPatterns(context, patterns);
        if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
          signalPassFailure();
          return;
        }
      }
    };
    
    }  // namespace
    
    void AddLiftTfliteFlexOpsPatterns(MLIRContext* context,
                                      RewritePatternSet& patterns) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top