File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/plugins/intel_npu/tests/functional/behavior/npuw/test_engine/models Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1394,7 +1394,7 @@ std::shared_ptr<ov::Model> ModelBuilder::make_model(const ov::Output<ov::Node>&
13941394
13951395std::shared_ptr<ov::Model> ModelBuilder::build_model (const ModelConfig& config_in) {
13961396 OPENVINO_ASSERT (
1397- ( int ) config_in.use_conv_features + ( int ) config_in.use_cross_attention + ( int ) config_in.use_token_type_embedding <= 1 ,
1397+ static_cast < int >( config_in.use_conv_features ) + static_cast < int >( config_in.use_cross_attention ) + static_cast < int >( config_in.use_token_type_embedding ) <= 1 ,
13981398 " At most one structural dispatch flag may be set" );
13991399
14001400 // Fill in norm/ffn defaults from actual config sizes when the caller left them empty.
You can’t perform that action at this time.
0 commit comments