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

[PYTHON API] update InferQueue #8513

Commits on Nov 4, 2021

  1. Configuration menu
    Copy the full SHA
    2df7b7d View commit details
    Browse the repository at this point in the history
  2. Output const node python tests (openvinotoolkit#52)

    * add python bindings tests for Output<const ov::None>
    
    * add proper tests
    
    * add new line
    bszmelcz authored and akuporos committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    5998235 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    74ca084 View commit details
    Browse the repository at this point in the history
  4. Pszmel/bind infer request (openvinotoolkit#51)

    * remove set_batch, get_blob and set_blob
    
    * update InferRequest class
    
    * change InferenceEngine::InferRequest to ov::runtime::InferRequest
    
    * update set_callback body
    
    * update bindings to reflect ov::runtime::InferRequest
    
    * bind set_input_tensor and get_input_tensor
    
    * style fix
    
    * clen ie_infer_queue.cpp
    
    * Bind exec core ov (openvinotoolkit#50)
    
    * bind core, exec_net classes
    
    * rm unused function
    
    * add new line
    
    * rename ie_infer_request -> infer_request
    
    * update imports
    
    * update __init__.py
    
    * update ie_api.py
    
    * Replace old containers with the new one
    
    * create impl for create_infer_request
    
    * comment out infer_queue to avoid errors with old infer_request
    
    * update infer_request bind to reflect new infer_request api
    
    * comment out inpuit_info from ie_network to avoid errors with old containers
    
    * Register new containers and comment out InferQueue
    
    * update infer request tests
    
    * style fix
    
    * remove unused imports
    
    * remove unused imports and 2 methods
    
    * add tests to cover all new methods from infer_request
    
    * style fix
    
    * add test
    
    * remove registration of InferResults
    
    * update name of exception_ptr parameter
    
    * update the loops that iterate through inputs and outputs
    
    * clean setCustomCallbacks
    
    * style fix
    
    * add Tensor import
    
    * style fix
    
    * update infer and normalize_inputs
    
    * style fix
    
    * rename startTime and endTime
    
    * Create test for mixed keys as infer arguments
    
    * update infer function
    
    * update return type of infer
    
    Co-authored-by: Bartek Szmelczynski <bartosz.szmelczynski@intel.com>
    2 people authored and akuporos committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    dec4cb0 View commit details
    Browse the repository at this point in the history
  5. fix get_version

    akuporos committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    c6c7d9b View commit details
    Browse the repository at this point in the history
  6. fix opaque issue

    akuporos committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    dd6dbc9 View commit details
    Browse the repository at this point in the history
  7. some cosmetic changes

    akuporos committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    573d367 View commit details
    Browse the repository at this point in the history
  8. fix codestyle in tests

    akuporos committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    9c06d10 View commit details
    Browse the repository at this point in the history
  9. make tests green

    akuporos committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    5b2b9a0 View commit details
    Browse the repository at this point in the history
  10. Merge branch 'develop/new-python-api' of https://github.com/akuporos/…

    …openvino into jiwaszki/python_api_simple
    jiwaszki committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    a610fac View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2021

  1. Extend python InferRequest

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    5fe62ee View commit details
    Browse the repository at this point in the history
  2. Extend python Function

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    6998cbd View commit details
    Browse the repository at this point in the history
  3. Change return value of infer call

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    c541d2d View commit details
    Browse the repository at this point in the history
  4. Fix missing precisions conversions in CPU plugin

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    d83f73f View commit details
    Browse the repository at this point in the history
  5. Rework of runtime for new tests

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    3ddd264 View commit details
    Browse the repository at this point in the history
  6. Fixed onnx reading in python tests

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    0c6a519 View commit details
    Browse the repository at this point in the history
  7. Edit compatibility tests

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    127f0b9 View commit details
    Browse the repository at this point in the history
  8. Edit tests

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    695104e View commit details
    Browse the repository at this point in the history
  9. Add FLOAT_LIKE xfails

    jiwaszki committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    7f457ed View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7456077 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    a6e21e4 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2021

  1. [Python API] bind ProfilingInfo (openvinotoolkit#55)

    * bind ProfilingInfo
    
    * Add tests
    
    * Fix code style
    
    * Add property
    Alexey Lebedev committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    9cebdc7 View commit details
    Browse the repository at this point in the history
  2. fix codestyle

    akuporos committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    f2d8e88 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a55c939 View commit details
    Browse the repository at this point in the history
  4. Infer new request method (openvinotoolkit#56)

    * fix conflicts, add infer_new_request function
    
    * remove redundant functions, fix style
    
    * revert the unwanted changes
    
    * revert removal of the Blob
    
    * revert removal of isTblob
    bszmelcz committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    e62512f View commit details
    Browse the repository at this point in the history
  5. add add_extension from path

    akuporos committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    3621e39 View commit details
    Browse the repository at this point in the history
  6. codestyle

    akuporos committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    efd844d View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2021

  1. Configuration menu
    Copy the full SHA
    ab9c678 View commit details
    Browse the repository at this point in the history
  2. fix win build

    akuporos committed Nov 9, 2021
    Configuration menu
    Copy the full SHA
    1c208ba View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b5d8303 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2021

  1. update infer queue

    Alexey Lebedev committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    a9a0e7f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    adf1844 View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'akuporos/develop/new-python-api' into a…

    …lexeyl1/python_api/bind_infer_queue
    Alexey Lebedev committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    08c5719 View commit details
    Browse the repository at this point in the history
  4. fix code style

    Alexey Lebedev committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    90b49f9 View commit details
    Browse the repository at this point in the history
  5. Hot-fix CPU plugin with precision

    jiwaszki committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    22b0a75 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2021

  1. fix start_async

    akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    1cbf144 View commit details
    Browse the repository at this point in the history
  2. add performance hint to time infer (openvinotoolkit#8480)

    Victor Kuznetsov authored and akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    530d164 View commit details
    Browse the repository at this point in the history
  3. Updated common migration pipeline (openvinotoolkit#8176)

    * Updated common migration pipeline
    
    * Fixed merge issue
    
    * Added new model and extended example
    
    * Fixed typo
    
    * Added v10-v11 comparison
    ilyachur authored and akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    ae72199 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f55e3b2 View commit details
    Browse the repository at this point in the history
  5. Refactor work with env variables (openvinotoolkit#8208)

    * del MO_ROOT
    
    * del MO_ROOT from common_utils.py
    
    * add MO_PATH to common_utils.py
    
    * change mo_path
    Victor Kuznetsov authored and akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    372a424 View commit details
    Browse the repository at this point in the history
  6. [IE Sample Scripts] Use cmake to build samples (openvinotoolkit#8442)

    * Use cmake to build samples
    
    * Add the option to set custom build output folder
    dpigasin authored and akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    3c31285 View commit details
    Browse the repository at this point in the history
  7. Remove opset8 from compatibility ngraph python API (openvinotoolkit#8452

    )
    Artur Kulikowski authored and akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    f069af7 View commit details
    Browse the repository at this point in the history
  8. [GPU] OneDNN gpu submodule update to version 2.5 (openvinotoolkit#8449)

    * [GPU] OneDNN gpu submodule update to version 2.5
    
    * [GPU] Updated onednn submodule and added layout optimizer fix
    lznamens authored and akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    4051fdc View commit details
    Browse the repository at this point in the history
  9. Install rules for static libraries case (openvinotoolkit#8384)

    * Proper cmake install for static libraries case
    
    * Added an ability to skip template plugin
    
    * Added install rules for VPU / GPU
    
    * Install more libraries
    
    * Fixed absolute TBB include paths
    
    * Disable GNA
    
    * Fixed issue with linker
    
    * Some fixes
    
    * Fixed linkage issues in tests
    
    * Disabled some tests
    
    * Updated CI pipelines
    
    * Fixed Windows linkage
    
    * Fixed custom_opset test for static casr
    
    * Fixed CVS-70313
    
    * Continue on error
    
    * Fixed clanf-format
    
    * Try to fix Windows linker
    
    * Fixed compilation
    
    * Disable samples
    
    * Fixed samples build with THREADING=SEQ
    
    * Fixed link error on Windows
    
    * Fixed ieFuncTests
    
    * Added static Azure CI
    
    * Revert "Fixed link error on Windows"
    
    This reverts commit 78cca36.
    
    * Merge static and dynamic linux pipelines
    
    * Fixed Azure
    ilya-lavrenov authored and akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    1319384 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    010106b View commit details
    Browse the repository at this point in the history
  11. fix codestyle

    akuporos committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    28d83b4 View commit details
    Browse the repository at this point in the history
  12. rename all methods in this class to snake_case

    Alexey Lebedev committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    3525a0b View commit details
    Browse the repository at this point in the history
  13. resolve conflicts

    Alexey Lebedev committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    84fda21 View commit details
    Browse the repository at this point in the history
  14. some updates

    Alexey Lebedev committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    37b048f View commit details
    Browse the repository at this point in the history
  15. code style

    Alexey Lebedev committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    ee4a8cf View commit details
    Browse the repository at this point in the history
  16. fix code style in tests

    Alexey Lebedev committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    26ef61b View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    976ab13 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    3a8bf18 View commit details
    Browse the repository at this point in the history
  19. Merge remote-tracking branch 'akuporos/develop/new-python-api' into a…

    …lexeyl1/python_api/bind_infer_queue
    Alexey Lebedev committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    a5f8dee View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2021

  1. compute latency in callback

    Alexey Lebedev committed Nov 13, 2021
    Configuration menu
    Copy the full SHA
    fd9f0b0 View commit details
    Browse the repository at this point in the history
  2. Fix get_idle_request

    Alexey Lebedev committed Nov 13, 2021
    Configuration menu
    Copy the full SHA
    0547e21 View commit details
    Browse the repository at this point in the history
  3. resolve conflicts

    Alexey Lebedev committed Nov 13, 2021
    Configuration menu
    Copy the full SHA
    2d027da View commit details
    Browse the repository at this point in the history
  4. fix latency

    Alexey Lebedev committed Nov 13, 2021
    Configuration menu
    Copy the full SHA
    fa5bdea View commit details
    Browse the repository at this point in the history
  5. Fix code style

    Alexey Lebedev committed Nov 13, 2021
    Configuration menu
    Copy the full SHA
    6f7187b View commit details
    Browse the repository at this point in the history