MNN/source/backend/opencl/core/runtime/OpenCLTuneInfo.hpp

21 lines
340 B
C++
Raw Normal View History

2023-07-18 09:36:26 +08:00
//
// OpenCLTuneInfo.hpp
// MNN
//
// Created by MNN on 2021/12/26.
// Copyright © 2018, Alibaba Group Holding Limited
//
2022-01-04 10:50:40 +08:00
#ifndef OpenCLTuneInfo_hpp
#define OpenCLTuneInfo_hpp
#include "CLCache_generated.h"
namespace MNN {
namespace OpenCL {
struct TuneInfo {
std::vector<std::unique_ptr<CLCache::OpInfoT>> mInfos;
};
}
}
#endif