// Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. // // Licensed 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. #pragma once #include #include #include #include "llvm/ADT/SmallVector.h" #include "paddle/infrt/host_context/value.h" namespace infrt { namespace host_context { /** * KernelFrame captures the states(input arguments, attributes, results) * associated with a kernel invocation. */ class KernelFrame { public: int GetNumArgs() const { return num_arguments_; } int GetNumResults() const { return num_results_; } int GetNumAttributes() const { return value_or_attrs_.size() - num_arguments_ - (num_results_ == -1 ? 0 : num_results_); } //! Get something at a specific position \p index. The element might be an //! argument, an attribute or a result. template T& GetElementAt(int index) { CHECK_LT(index, GetNumArgs() + GetNumAttributes() + GetNumResults()); return value_or_attrs_[index]->template get_or_default(); } template T& GetArgAt(int index) { CHECK_LT(index, GetNumArgs()); return value_or_attrs_[index]->get(); } template const T& GetArgAt(int index) const { CHECK_LT(index, GetNumArgs()); return value_or_attrs_[index]->get(); } Value* GetArgAt(int index) { CHECK_LT(index, GetNumArgs()); return value_or_attrs_[index]; } // Get all arguments. llvm::ArrayRef GetArguments() const { return GetValues(0, num_arguments_); } Value* GetAttributeAt(int idx) { CHECK_NE(num_results_, -1) << "Must call SetNumResults before GetAttributeAt"; CHECK_LT(idx, static_cast(value_or_attrs_.size() - num_arguments_ - num_results_)); return value_or_attrs_[num_arguments_ + num_results_ + idx]; } void AddAttribute(Value* v) { CHECK_NE(num_results_, -1) << "Must call SetNumResults before calling AddAttribute"; value_or_attrs_.emplace_back(v); } template void EmplaceResult(Args&&... args) { EmplaceResult(0, std::forward(args)...); } template void EmplaceResult(int index, Args&&... args) { SetResultAt(index, T(std::forward(args)...)); } template void SetResultAt(int index, T&& value) { CHECK_LT(index, num_results_) << "Invalid result index"; CHECK(value_or_attrs_[num_arguments_ + index]); value_or_attrs_[num_arguments_ + index]->set(std::move(value)); } llvm::ArrayRef GetResults() const { return GetValues(num_arguments_, num_results_); } llvm::MutableArrayRef GetResults() { return GetMutableValues(num_arguments_, num_results_); } llvm::ArrayRef GetValues(size_t from, size_t length) const { CHECK_LE(static_cast(from + length), num_arguments_ + num_results_); if (length == 0) return {}; return llvm::makeArrayRef(&value_or_attrs_[from], length); } llvm::MutableArrayRef GetMutableValues(size_t from, size_t length) { CHECK_LE(static_cast(from + length), num_arguments_ + num_results_); if (length == 0) return {}; return llvm::makeMutableArrayRef(&value_or_attrs_[from], length); } protected: int num_arguments_{}; int num_results_{-1}; llvm::SmallVector value_or_attrs_; }; std::ostream& operator<<(std::ostream& os, const KernelFrame& frame); class KernelFrameBuilder : public KernelFrame { public: void AddArgument(Value* value) { CHECK(value); CHECK_EQ(num_results_, -1) << "Should call AddArgument before calling SetNumResults"; value_or_attrs_.push_back(value); ++num_arguments_; } void SetResults(llvm::ArrayRef values) { CHECK_EQ(num_arguments_, static_cast(value_or_attrs_.size())); CHECK_EQ(num_results_, -1); for (Value* x : values) { value_or_attrs_.push_back(x); } num_results_ = values.size(); } void SetNumResults(size_t n) { CHECK_EQ(num_arguments_, static_cast(value_or_attrs_.size())); CHECK_EQ(num_results_, -1); num_results_ = n; for (size_t i = 0; i < n; i++) { value_or_attrs_.emplace_back(new Value); } } void SetResultAt(int result_id, Value* value) { CHECK_EQ(static_cast(value_or_attrs_.size()), num_arguments_ + num_results_) << "Call SetNumResults first"; CHECK_LT(result_id + num_arguments_, static_cast(value_or_attrs_.size())); CHECK(value); value_or_attrs_[num_arguments_ + result_id]->set(value); } void Reset() { value_or_attrs_.clear(); num_arguments_ = 0; num_results_ = -1; } }; } // namespace host_context } // namespace infrt