* 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.
*/
#ifndef CATLASS_TUNER_CATLASS_TUNER_H
#define CATLASS_TUNER_CATLASS_TUNER_H
#include <condition_variable>
#include <queue>
#include "catlass/library/manifest.h"
#include "profiler.h"
#include "metrics.h"
#include "op_launcher.h"
namespace Catlass {
class CatlassTuner {
public:
explicit CatlassTuner(CommandLineParser parser);
~CatlassTuner();
bool Init();
void Run();
private:
bool InitOperators(OpConfigPool &pool);
void UpdateMetrics(bool readAll = false);
void Synchronize();
OpRunStatus RunOp(const std::shared_ptr<OpConfig>& opConfig, Library::Operation *op, uint32_t aicCoreNum);
aclrtStream stream_{nullptr};
Library::Manifest manifest_{};
CommandLineParser parser_{};
ProfileDataHandler profileHandler_{};
Metrics metrics_{};
std::queue<std::vector<KernelType>> kernelsQueue_;
int32_t deviceId_{0};
std::vector<double> durations_{};
};
}
#endif