Commit 53b6fb46 authored by Pinaev Danil's avatar Pinaev Danil Committed by Alexander Alekhin

Merge pull request #15695 from aDanPin:dp/incorrect_use_of_muve_fix

Fix incorrect use of std::move() in g-api perf tests

* First version

* Fix perfomace tests

Replace

    c.apply(...);

with

    cc = c.compile(...);
    cc(...);

* Remove output meta arguments from .compile()

* Style fix

* Remove useless commented string

* Stick to common pattern : i.e. use gin() and gout() explicitly.

* Use cc(gin(...), gout(...)) in all cases.
parent a7acb880
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment