mirror of
https://github.com/intel/llvm.git
synced 2026-01-25 10:55:58 +08:00
This commit adds a new "specification_version" field to the TOSA target environment attribute. This allows a user to specify which version of the TOSA specification they would like to target during lowering. A leading example in the validation pass has also been added. This addition adds a version to each profile compliance entry to track which version of the specification the entry was added. This allows a backwards compatibility check to be implemented between the target version and the profile compliance entry version. For now a default version of "1.0" is assumed. "1.1.draft" is added to denote an in-development version of the specification targeting the next release.
88 lines
2.9 KiB
C++
88 lines
2.9 KiB
C++
//===- TosaAttachTarget.cpp
|
|
//------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Attach target information to a TOSA module.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "mlir/Dialect/Func/IR/FuncOps.h"
|
|
#include "mlir/Dialect/Tosa/IR/TargetEnv.h"
|
|
#include "mlir/Dialect/Tosa/Transforms/Passes.h"
|
|
#include "mlir/Pass/Pass.h"
|
|
|
|
namespace mlir {
|
|
namespace tosa {
|
|
|
|
#define GEN_PASS_DEF_TOSAATTACHTARGET
|
|
#include "mlir/Dialect/Tosa/Transforms/Passes.h.inc"
|
|
|
|
namespace {
|
|
|
|
class TosaAttachTarget
|
|
: public tosa::impl::TosaAttachTargetBase<TosaAttachTarget> {
|
|
using Base::Base;
|
|
|
|
public:
|
|
void runOnOperation() override {
|
|
llvm::SmallVector<Profile, 2> selectedProfiles;
|
|
if (!profiles.empty()) {
|
|
for (const std::string &prof : profiles) {
|
|
std::optional<Profile> profSymbol = symbolizeProfile(prof);
|
|
if (!profSymbol) {
|
|
llvm::SmallVector<Profile> allProfiles = ProfileAttr::getAllValues();
|
|
llvm::errs() << buildUnkownParameterErrorMessage(allProfiles,
|
|
"profile", prof);
|
|
return signalPassFailure();
|
|
}
|
|
selectedProfiles.push_back(profSymbol.value());
|
|
}
|
|
}
|
|
|
|
llvm::SmallVector<Extension, 10> selectedExtensions;
|
|
if (!extensions.empty()) {
|
|
for (const std::string &ext : extensions) {
|
|
std::optional<Extension> extSymbol = symbolizeExtension(ext);
|
|
if (!extSymbol) {
|
|
llvm::SmallVector<Extension> allExtensions =
|
|
ExtensionAttr::getAllValues();
|
|
llvm::errs() << buildUnkownParameterErrorMessage(allExtensions,
|
|
"extension", ext);
|
|
return signalPassFailure();
|
|
}
|
|
selectedExtensions.push_back(extSymbol.value());
|
|
}
|
|
}
|
|
|
|
ModuleOp mod = getOperation();
|
|
MLIRContext *ctx = &getContext();
|
|
const auto targetEnvAttr = TargetEnvAttr::get(
|
|
ctx, specificationVersion, level, selectedProfiles, selectedExtensions);
|
|
mod->setAttr(TargetEnvAttr::name, targetEnvAttr);
|
|
}
|
|
|
|
private:
|
|
template <typename T>
|
|
std::string buildUnkownParameterErrorMessage(llvm::SmallVector<T> &enumValues,
|
|
std::string enumName,
|
|
std::string unknownArgument) {
|
|
std::string message;
|
|
llvm::raw_string_ostream os(message);
|
|
os << "Unknown TOSA " << enumName << " name passed in '" << unknownArgument
|
|
<< "', supported " << enumName << "s are: ";
|
|
llvm::interleaveComma(enumValues, os);
|
|
os << "\n";
|
|
return message;
|
|
}
|
|
};
|
|
|
|
} // namespace
|
|
|
|
} // namespace tosa
|
|
} // namespace mlir
|