Skip to content

Commit

Permalink
Move vision_encoder, pipeline.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Wovchena committed Oct 14, 2024
1 parent 1b2da2d commit 7f0ef7a
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion samples/cpp/visual_language_chat/visual_language_chat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0

#include "load_image.hpp"
#include <openvino/genai/visual_language/vlm_pipeline.hpp>
#include <openvino/genai/visual_language/pipeline.hpp>
#include <openvino/runtime/intel_gpu/properties.hpp>

bool print_subword(std::string&& subword) {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/cpp/src/visual_language/vlm_pipeline.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (C) 2023-2024 Intel Corporation
// SPDX-License-Identifier: Apache-2.0

#include "openvino/genai/visual_language/vlm_pipeline.hpp"
#include "openvino/genai/visual_language/pipeline.hpp"
#include "openvino/genai/tokenizer.hpp"
#include "vlm_sampling.hpp"
#include "clip.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/python/py_vlm_pipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <pybind11/stl.h>
#include <pybind11/stl_bind.h>
#include <pybind11/functional.h>
#include "openvino/genai/visual_language/vlm_pipeline.hpp"
#include "openvino/genai/visual_language/pipeline.hpp"
#include "../cpp/src/tokenizers_path.hpp"
#include "./utils.hpp"

Expand Down

0 comments on commit 7f0ef7a

Please sign in to comment.