Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RuntimeVerifyPass (0.75 sec)

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

    // This pass verifies that the TFL ops meet the TFL runtime constraints.
    class RuntimeVerifyPass
        : public impl::RuntimeVerifyPassBase<RuntimeVerifyPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(RuntimeVerifyPass)
    
      explicit RuntimeVerifyPass() {}
    
     private:
      void runOnOperation() override;
    };
    
    void RuntimeVerifyPass::runOnOperation() {
      getOperation().walk([&](TflRuntimeVerifyOpInterface op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top