Skip to content

Commit

Permalink
GNNE-1891 ShapeBucket Optimize (#1088)
Browse files Browse the repository at this point in the history
* Optimize ShapeBucket

---------

Co-authored-by: FusionBolt <FusionBolt@users.noreply.github.com>
  • Loading branch information
FusionBolt and FusionBolt authored Sep 15, 2023
1 parent 2bfceb9 commit 85011d8
Show file tree
Hide file tree
Showing 75 changed files with 2,768 additions and 730 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) Canaan Inc. All rights reserved.
// Licensed under the Apache license. See LICENSE file in the project root for full license information.
/* This file is generated by tools/stackvm_gen/IsaGen at 2023/7/12 17:07:39 +08:00. */
/* This file is generated by tools/stackvm_gen/IsaGen at 2023/9/5 19:40:30 +08:00. */

using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -271,9 +271,24 @@ private void EmitTensorCall(Op op)
case IR.ShapeExpr.Conv2DTransposeShape top:
Emitter.T.Conv2DTransposeShape();
break;
case IR.ShapeExpr.GetPaddings top:
Emitter.T.GetPaddings();
break;
case IR.ShapeExpr.MatMulShape top:
Emitter.T.MatMulShape();
break;
case IR.ShapeExpr.ReshapeShape top:
Emitter.T.ReshapeShape();
break;
case IR.ShapeExpr.SqueezeShape top:
Emitter.T.SqueezeShape();
break;
case IR.ShapeExpr.TransposeShape top:
Emitter.T.TransposeShape();
break;
case IR.ShapeExpr.UnsqueezeShape top:
Emitter.T.UnsqueezeShape();
break;
case IR.Random.Normal top:
Emitter.T.Normal(top.Type);
break;
Expand Down
Loading

0 comments on commit 85011d8

Please sign in to comment.