* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
* \file PvModel.h
* \brief
*/
#pragma once
#include <string>
#include "interface/function/function.h"
#include "PvData.h"
#include "tilefwk/core_func_data.h"
namespace CostModel {
class DynPvModel {
public:
virtual ~DynPvModel() = default;
virtual void Codegen(npu::tile_fwk::Function* func) = 0;
virtual void InitPv() = 0;
virtual uint8_t* CopyToDev(uint8_t* data, uint64_t size) = 0;
virtual uint8_t* CopyTensorToDev(uint8_t* data, uint64_t size) = 0;
virtual uint8_t* AllocWorkspace(uint64_t size) = 0;
virtual void CopyTensorFromDev() = 0;
virtual void Run(npu::tile_fwk::DynFuncData *funcdata, int coreId, int funcId, int taskId) = 0;
};
}