Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OutlineCompositesPass (0.31 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

        rewriter.eraseOp(lhs_mul);
        rewriter.eraseOp(rhs_mul);
    
        return success();
      }
    };
    
    class OutlineCompositesPass
        : public impl::OutlineCompositesPassBase<OutlineCompositesPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OutlineCompositesPass)
    
      void runOnOperation() override {
        auto func = getOperation();
        RewritePatternSet patterns(&getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.td

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    def OutlineCompositesPass: Pass<"outline-composites", "func::FuncOp"> {
      let summary = "Outlines specific patterns into composites.";
      let description = [{
        Outline specific patterns into composites. Specific patterns can be any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top