1. 25 Apr, 2019 5 commits
  2. 24 Apr, 2019 2 commits
  3. 23 Apr, 2019 4 commits
  4. 22 Apr, 2019 4 commits
  5. 20 Apr, 2019 1 commit
    • Sang Ik Lee's avatar
      Fix install path on Windows (#2765) · 2257d9cf
      Sang Ik Lee authored
      * CMAKE_CFG_INTDIR does not work at install time. Use CMAKE_INSTALL_CONFIG_NAME on Windows.
      
      * Rename NGRAPH_*_INSTALLSRC_DIRECTORY to NGRAPH_*_INSTALL_SRC_DIRECTORY
      2257d9cf
  6. 19 Apr, 2019 11 commits
  7. 18 Apr, 2019 9 commits
    • Michał Karzyński's avatar
      [ONNX] Split ONNX tests into smaller files in test/onnx subdirectory (#2779) · 57d637bc
      Michał Karzyński authored
      * Move ONNX tests to the test/onnx subdirectory
      
      * Change non-conforming test names
      
      * Refactor quant and reshape tests to separate files
      
      * Refactor tests into separate files
      
      * Rename test in GPU excludes
      57d637bc
    • Robert Kimball's avatar
      remove debug (#2783) · a588ca28
      Robert Kimball authored
      a588ca28
    • Michał Karzyński's avatar
      [ONNX] Support for Gather op (#2772) · 0a5c2b81
      Michał Karzyński authored
      * Temp.
      
      * Put all the dummy files.
      
      * Remove some compile errors.
      
      * WIP: Add gather and gather_nd kernels.
      
      * Temp save.
      
      * Update comments for gather.
      
      * Implement reference gather.
      
      * Validate and infer shape.
      
      * Style.
      
      * Fix compile issues.
      
      * Add serializer support.
      
      * Fix interpreter compilation issues.
      
      * WIP: Add UT
      
      * WIP: Add UT
      
      * gather_nd UT passing.
      
      * Fix gather with no axis.
      
      * Fix gather issue.
      
      * Update unit_test.manifest for backends and add gather, gather_nd  support for generic cpu.
      
      * Add type_prop tests.
      
      * Add CPU builders.
      
      * Fix codegen.
      
      * Make some UT numbers more readable.
      
      * Style.
      
      * Update Copyright Year
      
      * Update Copyright Year
      
      * Fix Typo.
      
      * Remove unused variable.
      
      * fix nv gpu build error
      
      * Fix intel gpu compilation.
      
      * Add basic docstring.
      
      * Allow 1D indices for gather_nd.
      
      * Allow scalar indices for gather.
      
      * Update unit_test manifest files.
      
      * Style.
      
      * Add indices element type check and add failing type_prop checks.
      
      * Update docstring.
      
      * Fix incorrect test names in unit_test.manifest
      
      * [ONNX] Support for Gather op
      
      * Remove unneeded broadcast
      
      * Remove unused include
      
      * Set correct default value for axis
      0a5c2b81
    • Mohammad Mahbubuzzaman's avatar
      Adds provenance tag propagation (#2747) · 6cfe5b41
      Mohammad Mahbubuzzaman authored
      * Add some unit tests for provenance with node replacement
      
      * One more test
      
      * add provenace propagation
      
      * Adds ability to control whether provenance is on or off
      
      * Add some unit tests for provenance with node replacement
      
      * One more test
      
      * add provenace propagation
      
      * Adds ability to control whether provenance is on or off
      
      * Removes extraneous semicolon
      
      * Fixes include header errors
      
      * Reimplements provenance enable flag using global variable
      
      * Fixes style issues.
      
      * Adds newline at the end of file.
      
      * Fixes function return type.
      
      * Adds RAII mechanism for localizing provenance enable state in testing.
      
      * Improves getter/setter method name to match variable name.
      
      * Adds s_ prefix to global variable provenance_enabled.
      6cfe5b41
    • Michał Karzyński's avatar
      [ONNX] Unify broadcast code in ngraph core and in ONNX bridge (#2771) · e49756c8
      Michał Karzyński authored
      * [ONNX] Unify broadcast code in ngraph core and in ONNX bridge
      
      * Use using a bit less
      e49756c8
    • Adam Rogowiec's avatar
      Return 0 or 1 when converting to bool (#2552) · 1572d31f
      Adam Rogowiec authored
      * Update CPU backend.
      
      * Update INTERPRETER backend.
      
      * Update unit tests.
      
      * Don't use std:: prefix.
      
      * Convert to bool for GPU backend in DEX mode.
      
      * Handle boolean elements in Intel GPU backend.
      
      * Disable convert to bool UT for IGPU.
      
      * Update quoting style to fix errors raised by updated version of flake8.
      1572d31f
    • Tomasz Dołbniak's avatar
      [ONNX] Erf test for integer values (#2778) · 54db6552
      Tomasz Dołbniak authored
      * [ONNX] Erf test for integer values
      
      * [ONNX] switch off model_erf_int32 test on GPU
      54db6552
    • Sergey Shalnov's avatar
      ab9fad24
    • Pruthvi's avatar
      Fix Erf CPU Builder for int32 (#2773) · 6f0c8190
      Pruthvi authored
      * - pass tensor through reference in the lambad closure of cpu reference_erf kernnel
      - add Erf unit test case to verify codepath for int32 values
      
      * fix clang errors
      6f0c8190
  8. 17 Apr, 2019 4 commits
    • gaurides's avatar
      DeconvBias (#2716) · 03f13e4b
      gaurides authored
      * deconv optimizations for dcgan
      
      * Added test cases
      
      * modified some tests, not working at this point
      
      * Removed temp code
      
      * fixes to get unit test to pass
      
      * Added node validation checks
      
      * Update mkldnn emitter to memory reuse design
      
      * Code cleanup
      
      * Fix to enable deconv select the right kernel
      
      * Fix file permissions
      
      * Disabled unit test cases
      
      * Remove unused variable
      
      * Address PR feedback
      
      * Removed dead code
      
      * Style check
      
      * removed dead code
      03f13e4b
    • Sang Ik Lee's avatar
      gather, gather_nd (#2742) · 59632bac
      Sang Ik Lee authored
      * Temp.
      
      * Put all the dummy files.
      
      * Remove some compile errors.
      
      * WIP: Add gather and gather_nd kernels.
      
      * Temp save.
      
      * Update comments for gather.
      
      * Implement reference gather.
      
      * Validate and infer shape.
      
      * Style.
      
      * Fix compile issues.
      
      * Add serializer support.
      
      * Fix interpreter compilation issues.
      
      * WIP: Add UT
      
      * WIP: Add UT
      
      * gather_nd UT passing.
      
      * Fix gather with no axis.
      
      * Fix gather issue.
      
      * Update unit_test.manifest for backends and add gather, gather_nd  support for generic cpu.
      
      * Add type_prop tests.
      
      * Add CPU builders.
      
      * Fix codegen.
      
      * Make some UT numbers more readable.
      
      * Style.
      
      * Update Copyright Year
      
      * Update Copyright Year
      
      * Fix Typo.
      
      * Remove unused variable.
      
      * fix nv gpu build error
      
      * Fix intel gpu compilation.
      
      * Add basic docstring.
      
      * Allow 1D indices for gather_nd.
      
      * Allow scalar indices for gather.
      
      * Update unit_test manifest files.
      
      * Style.
      
      * Add indices element type check and add failing type_prop checks.
      
      * Update docstring.
      
      * Fix incorrect test names in unit_test.manifest
      
      * Missing header
      59632bac
    • Leona C's avatar
      Update with latest clr info (#2766) · a68cddb7
      Leona C authored
      a68cddb7
    • Tomasz Dołbniak's avatar
      [ONNX] Erf op support (#2763) · 45e4e893
      Tomasz Dołbniak authored
      * [ONNX] Erf op support
      
      * [ONNX] Missing CMakeLists entry for the Erf op
      
      * [ONNX] model_erf unit test excluded from GPU
      
      * Update quoting style to fix errors raised by updated version of flake8.
      45e4e893