| /* |
| * 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. |
| */ |
| |
| #ifndef TVM_RELAX_DISTRIBUTED_TRANSFORM_UTILS_H_ |
| #define TVM_RELAX_DISTRIBUTED_TRANSFORM_UTILS_H_ |
| |
| #include <tvm/ffi/cast.h> |
| #include <tvm/ir/function.h> |
| #include <tvm/ir/module.h> |
| #include <tvm/relax/analysis.h> |
| #include <tvm/relax/distributed/type.h> |
| #include <tvm/relax/expr_functor.h> |
| namespace tvm { |
| namespace relax { |
| namespace distributed { |
| |
| /*! |
| * \brief Pattern match op to a TIR function and look it up. |
| * \return The TIR function, or nullopt if pattern match fails. |
| */ |
| inline ffi::Optional<tirx::PrimFunc> MatchPrimFunc(const IRModule& mod_, const Expr& op) { |
| const GlobalVar& global_var = op.as_or_throw<GlobalVar>(); |
| // NOTE: as check works for nullptr(returns null) |
| ffi::Optional<BaseFunc> base_func = mod_->functions.Get(global_var); |
| if (auto* pfunc = base_func.as<tirx::PrimFuncNode>()) { |
| return ffi::GetRef<tirx::PrimFunc>(pfunc); |
| } |
| return std::nullopt; |
| } |
| /*! |
| * \brief Check whether the given types can appear in DistIR |
| * \return Whether the given types can appear in DistIR |
| */ |
| bool TypeCompatibleWithDistIR(ffi::Array<Type> tys); |
| |
| /*! |
| * \brief Check whether the given function is a DistIR function |
| * \return Whether the given function is a DistIR function |
| */ |
| bool IsDistIRFunc(Function func); |
| |
| /*! |
| * \brief Check whether the given function contains relax.dist.annotate_sharding |
| * \return Whether the given function contains relax.dist.annotate_sharding |
| */ |
| bool IsShardingAnnotatedFunc(Function func); |
| |
| } // namespace distributed |
| } // namespace relax |
| } // namespace tvm |
| |
| #endif // TVM_RELAX_DISTRIBUTED_TRANSFORM_UTILS_H_ |