Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsNotSupportedOp (0.1 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/README.md

        return patterns;
      }
    
      mlir::TypeID GetTypeId() const override {
        return mlir::TypeID::get<FooHardware>();
      }
    
      // We can specify what ops are not supported here.
      bool IsNotSupportedOp(mlir::Operation* op) const override { return false; }
    
      // This is basically saying how fast are we comparing to CPU.
      // The larger the value the better.
      float AdvantageOverCPU() const override { return 5.0; }
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
Back to top