Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTO] Filter device when compile_model with file path #27019

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
bc2f794
enabel AUTO to read model if passing model path into plugin.
WeldonWangwang Oct 11, 2024
3e2166a
enable test case.
WeldonWangwang Oct 12, 2024
c435080
update test case.
WeldonWangwang Oct 12, 2024
63b49bc
Update.
WeldonWangwang Oct 12, 2024
6734760
update.
WeldonWangwang Oct 12, 2024
3a76f96
update.
WeldonWangwang Oct 12, 2024
3660bbd
update.
yangwang201911 Oct 15, 2024
e23f124
Update.
WeldonWangwang Oct 16, 2024
877360d
fix the issue of calculating the first infer time.
yangwang201911 Oct 17, 2024
6208642
fix the issue when cache enabled.
yangwang201911 Oct 18, 2024
4ba6a02
the default setting for runtime fallback is to be disabled.
yangwang201911 Oct 21, 2024
b2f8c72
1. update the test case to disable CPU model cache when user app set …
yangwang201911 Oct 22, 2024
8e9a6b3
update.
yangwang201911 Oct 23, 2024
56246ce
update.
yangwang201911 Oct 23, 2024
8010546
update.
yangwang201911 Oct 23, 2024
73da15b
update.
yangwang201911 Oct 24, 2024
a917a76
Merge branch 'master' into ywang2/fix_query_statue_not_implemented_fo…
yangwang201911 Oct 25, 2024
1d4f0aa
Update the description of runtime fallback.
WeldonWangwang Oct 28, 2024
d8c5144
Merge branch 'master' into ywang2/fix_query_statue_not_implemented_fo…
yangwang201911 Nov 4, 2024
726b3a4
Merge branch 'master' into ywang2/fix_query_statue_not_implemented_fo…
yangwang201911 Nov 11, 2024
54badff
update.
yangwang201911 Nov 12, 2024
42e655e
Merge branch 'master' into ywang2/fix_query_statue_not_implemented_fo…
yangwang201911 Nov 12, 2024
eea0fd3
Merge branch 'master' into ywang2/fix_query_statue_not_implemented_fo…
yangwang201911 Nov 18, 2024
2e97ef4
Merge branch 'master' into ywang2/fix_query_statue_not_implemented_fo…
peterchen-intel Nov 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update.
  • Loading branch information
yangwang201911 authored and WeldonWangwang committed Oct 15, 2024
commit 3660bbdd8d6772e1168df2f5cab3b4ad30d951c7
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,9 @@ std::shared_ptr<ov::Model> ov::auto_plugin::tests::AutoFuncTests::create_model_w
std::shared_ptr<ov::Model> ov::auto_plugin::tests::AutoFuncTests::create_stateful_model() {
auto arg = std::make_shared<ov::opset11::Parameter>(ov::element::f32, ov::Shape{1, 1});
auto init_const = ov::opset11::Constant::create(ov::element::f32, ov::Shape{1, 1}, {0});
// The ReadValue/Assign operations must be used in pairs in the model.
// For each such a pair, its own variable object must be created.
const std::string variable_name("variable0");
// auto variable = std::make_shared<ov::op::util::Variable>(
// ov::op::util::VariableInfo{ov::PartialShape::dynamic(), ov::element::dynamic, variable_name});
auto variable = std::make_shared<ov::op::util::Variable>(
ov::op::util::VariableInfo{init_const->get_shape(), ov::element::f32, variable_name});
// Creating ov::Model
auto read = std::make_shared<ov::opset11::ReadValue>(init_const, variable);
std::vector<std::shared_ptr<ov::Node>> args = {arg, read};
yangwang201911 marked this conversation as resolved.
Show resolved Hide resolved
auto add = std::make_shared<ov::opset11::Add>(arg, read);
Expand Down
Loading