onecc-docker:release/1.8.0

Last commit made on 2020-08-24
Get this branch:
git clone -b release/1.8.0 https://git.launchpad.net/onecc-docker

Branch merges

Branch information

Name:
release/1.8.0
Repository:
lp:onecc-docker

Recent commits

dc2d30d... by seongwoo

[record-minmax] verify circle file (#3921)

This commit enables record-minmax to verify circle file.

ONE-DCO-1.0-ONE-DCO-1.0-Signed-off-by: seongwoo <email address hidden>

7014891... by seongwoo

[circle-quantizer] verify circle file (#3918)

This commit enables circle-quantizer to verify circle file.

ONE-DCO-1.0-ONE-DCO-1.0-Signed-off-by: seongwoo <email address hidden>

85120ac... by seongwoo

[tflite2circle] verify tflite file (#3930)

This commit enables tflite2circle to verify tflite file.

ONE-DCO-1.0-Signed-off-by: seongwoo <email address hidden>

6ed080a... by seongwoo

[infra] Update eigen download url (#3926)

bitbucket no more support source code download service

ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <email address hidden>

Co-authored-by: Hyeongseok Oh <email address hidden>

bf7806a... by SaeHie Park <email address hidden>

[circle2circle] Fix segfault for invalid input (#3877)

This will fix to handle segment fault error for invalid input file

ONE-DCO-1.0-Signed-off-by: SaeHie Park <email address hidden>

a38bbba... by JiHwan Yeo <email address hidden>

[onert] Use CachedData instead of MMapedData (1.8.0) (#3817)

- MMapedData reduces load/prepare time, but increases inference time
- Use CachedData for weight tensor for inference performance
  - Includes Revert "[onert] Remove unused function for munmap (#3710)"

ONE-DCO-1.0-Signed-off-by: JiHwan Yeo <email address hidden>

155c095... by JiHwan Yeo <email address hidden>

[onert] Fix weight deallocation to work on android (#3810)

- Weight deallocation is enabled when `__ARM_NEON__` flag is exist
  - This flag is legacy and not supported on android
  - It is replaced by `__ARM_NEON`
- Use both `__ARM_NEON` and `__ARM_NEON__` flags to enable weight deallocation on android

ONE-DCO-1.0-Signed-off-by: JiHwan Yeo <email address hidden>

7ad7c7f... by Hyeongseok Oh <email address hidden>

[release/1.8.0] Fix runtime makefile for packaging (#3771)

Fix packaging error by removed directory "tests"

Signed-off-by: Hyeongseok Oh <email address hidden>

f0f5590... by seongwoo

Release Note for 1.8.0 (#3765)

Release note for 1.8.0 is added

ONE-DCO-1.0-Signed-off-by: seongwoo <email address hidden>

393671b... by Hanjoung Lee <email address hidden>

[nnfwapi] Test: Use NNFW_ENSURE_SUCCESS macro (#3761)

As the pattern `ASSERT_EQ(???, NNFW_STATUS_NO_ERROR)` is used often,
let's use a macro for that which is more readable and shorter.

- Rename NNFW_ENSURE_CALL to NNFW_ENSURE_SUCCESS
- Replace all `ASSERT_EQ(???, NNFW_STATUS_NO_ERROR)` to
  `NNFW_ENSURE_CALL(???)`

ONE-DCO-1.0-Signed-off-by: Hanjoung Lee <email address hidden>