// Copyright (C) 2018-2024 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #pragma once #include namespace ov { namespace frontend { namespace ggml { class FrontEnd { public: using Ptr = std::shared_ptr; FrontEnd(); static std::shared_ptr convert(const InputModel::Ptr& model, bool naive = false); }; } // namespace ggml } // namespace frontend } // namespace ov