forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* call_dps lowering. * Improve shape lowering. * Support alloc_storage for dynamic shape. * implementt ToNonDF to transform program to non-dataflow format. * Fix the mutator issue. * Update build api, an issue occurred. * vm tests can pass. * Support shape tuple in executable seriablization. * Fix for test. * Minor fixes. * Address comments. * Add mutate binding var back. * Visit binding var and fix tests. Co-authored-by: YuchenJin <yuchenj@cs.washington.edu>
- Loading branch information
Showing
14 changed files
with
568 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
/*! | ||
* \file src/relax/transform/call_dps_rewrite.cc | ||
* \brief | ||
*/ | ||
#include <tvm/relax/attrs/memory.h> | ||
#include <tvm/relax/expr_functor.h> | ||
#include <tvm/relax/type.h> | ||
#include <tvm/tir/op.h> | ||
|
||
#include "../../relay/transforms/pattern_utils.h" | ||
|
||
namespace tvm { | ||
namespace relax { | ||
|
||
// ================== | ||
// CallDPSMutator | ||
// Example: | ||
// y: Tensor[n, m] = rx.call_dps((n, m), op.identity, (x)) | ||
// --> | ||
// lv0 = rx.call("relax.builtin.alloc_tensor", [n, m]) | ||
// rx.call_packed(op.identity, x, lv0) | ||
|
||
class CallDPSMutator : public ExprMutator { | ||
public: | ||
explicit CallDPSMutator(IRModule mod) { mod_ = mod; } | ||
|
||
IRModule Lower() { | ||
IRModule ret_mod = IRModule(); | ||
for (auto& p : mod_->functions) { | ||
Expr func = p.second; | ||
if (p.second->IsInstance<FunctionNode>()) { | ||
func = this->Mutate(p.second); | ||
} | ||
ret_mod->Add(p.first, Downcast<BaseFunc>(func)); | ||
} | ||
return ret_mod; | ||
} | ||
|
||
Expr VisitExpr_(const CallNode* call) override { | ||
// post-order mutation | ||
Expr expr = ExprMutator::VisitExpr_(call); | ||
call = expr.as<CallNode>(); | ||
// TODO(@yuchen, @altanh): using mutate cause infinite recursion | ||
// Expr expr = ExprMutator::Mutate(GetRef<Call>(call)); | ||
|
||
static const Op& call_dps_op = Op::Get("relax.call_dps"); | ||
static const Op& alloc_tensor_op = Op::Get("relax.builtin.alloc_tensor"); | ||
|
||
if (call->op == call_dps_op) { | ||
ShapeExpr output_shape = Downcast<ShapeExpr>(call->args[0]); | ||
Var tensor = builder_->Emit(Call(alloc_tensor_op, {call->args[0]}), "alloc"); | ||
builder_->Emit(Call(call->args[1], {call->args[2], tensor}), "_"); | ||
return tensor; | ||
} | ||
|
||
return GetRef<Expr>(call); | ||
} | ||
|
||
private: | ||
IRModule mod_; | ||
}; | ||
|
||
TVM_REGISTER_GLOBAL("relax.transform.call_dps_rewrite").set_body_typed([](IRModule mod) { | ||
return CallDPSMutator(mod).Lower(); | ||
}); | ||
|
||
} // namespace relax | ||
} // namespace tvm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.