• Pinaev Danil's avatar
    Merge pull request #15695 from aDanPin:dp/incorrect_use_of_muve_fix · 53b6fb46
    Pinaev Danil authored
    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.
    53b6fb46
Name
Last commit
Last update
..
gapi_core_perf_tests.cpp Loading commit data...
gapi_core_perf_tests.hpp Loading commit data...
gapi_core_perf_tests_inl.hpp Loading commit data...
gapi_imgproc_perf_tests.cpp Loading commit data...
gapi_imgproc_perf_tests.hpp Loading commit data...
gapi_imgproc_perf_tests_inl.hpp Loading commit data...