blob: 15ac6f5e7f23745e11adc9ee87bcba807b0f0505 [file]
/*
* 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 tvm/runtime/aot_executor/aot_executor_factory.h
* \brief Aot executor factory creating aot executor.
*/
#ifndef TVM_RUNTIME_AOT_EXECUTOR_AOT_EXECUTOR_FACTORY_H_
#define TVM_RUNTIME_AOT_EXECUTOR_AOT_EXECUTOR_FACTORY_H_
#include <tvm/runtime/c_runtime_api.h>
#include <tvm/runtime/module.h>
#include <tvm/runtime/ndarray.h>
#include <tvm/runtime/packed_func.h>
#include <algorithm>
#include <functional>
#include <numeric>
#include <string>
#include <unordered_map>
#include <vector>
#include "./aot_executor.h"
namespace tvm {
namespace runtime {
class TVM_DLL AotExecutorFactory : public runtime::ModuleNode {
public:
/*!
* \brief Construct the AotExecutorFactory.
* \param params The params of aot.
* \param module_name The module name of aot.
*/
AotExecutorFactory(const std::unordered_map<std::string, tvm::runtime::NDArray>& params,
const std::string& module_name);
/*!
* \brief Get member function to front-end
* \param name The name of the function.
* \param sptr_to_self The pointer to the module node.
* \return The corresponding member function.
*/
PackedFunc GetFunction(const String& name, const ObjectPtr<Object>& sptr_to_self) final;
/*!
* \return The type key of the executor.
*/
const char* type_key() const final { return "AotExecutorFactory"; }
/*! \brief Get the property of the runtime module .*/
int GetPropertyMask() const final { return ModulePropertyMask::kBinarySerializable; }
/*!
* \brief Save the module to binary stream.
* \param stream The binary stream to save to.
*/
void SaveToBinary(dmlc::Stream* stream) override;
/*!
* \brief Create a specific executor module
* \param devs The device of the host and devices where the model will be
* executed.
* \return created executor module
*/
Module ExecutorCreate(const std::vector<Device>& devs);
/*!
* \brief Set params.
* \param aot_executor The aot executor we want to set the params into.
* \param params The aot params value we want to set.
*/
void SetParams(AotExecutor* aot_executor,
const std::unordered_map<std::string, tvm::runtime::NDArray>& params) const {
std::unordered_map<std::string, tvm::runtime::NDArray> value = params;
// upload big arrays first to avoid memory issue in rpc mode
std::vector<std::string> keys;
for (const auto& p : value) {
keys.emplace_back(p.first);
}
std::sort(std::begin(keys), std::end(keys),
[&](const std::string& lhs, const std::string& rhs) -> bool {
auto lhs_size = GetDataSize(*value[lhs].operator->());
auto rhs_size = GetDataSize(*value[rhs].operator->());
return lhs_size > rhs_size;
});
for (const auto& key : keys) {
int in_idx = aot_executor->GetInputIndex(key);
if (in_idx >= 0) {
aot_executor->SetInput(in_idx, const_cast<DLTensor*>(value[key].operator->()));
}
}
}
protected:
/*! \brief The params. */
std::unordered_map<std::string, tvm::runtime::NDArray> params_;
/*! \brief module name */
std::string module_name_;
};
} // namespace runtime
} // namespace tvm
#endif // TVM_RUNTIME_AOT_EXECUTOR_AOT_EXECUTOR_FACTORY_H_