onecc-docker:release/1.14.0

Last commit made on 2021-03-22
Get this branch:
git clone -b release/1.14.0 https://git.launchpad.net/onecc-docker

Branch merges

Branch information

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

Recent commits

64873ed... by seongwoo

[one-cmds] one-codegen backward compatibility (#6300)

This commit makes one-codegen support deprecated interface for backward
compatibility.

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

64ca9da... by seongwoo

Release Note for ONE 1.14.0 (#6293)

- Release Note for ONE 1.14.0
- index.rst added

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

b4058c0... by Hyeongseok Oh <email address hidden>

[onert] Remove ParamChecker (#6287)

This commit removes ParamChecker.
ParamChecker was introduced to check parameter's compilability, but it is not used.
And this commit removes checkCompilable() method because it is just check disable_compile flag.

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

3368198... by Hanjoung Lee <email address hidden>

[onert] Deref LoweredGraph operand data reference (#6277)

After splitting partial graphs, LoweredGraph should not have reference
of `Data` which prevents unnecessary const data from being freed.

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

a9178c9... by Hanjoung Lee <email address hidden>

[onert] Remove IDynamicTensorManager (#6278)

As we do not use `planDealloc` and `deallocInput` of
`IDynamicTensorManager` any longer, we do not need this class.

cpu backend's `DynamicTensorManger` still exists but does not derive
from `IDynamicTensorManager`.

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

54c7e47... by seongwoo

[record-minmax] Add profile option (#6288)

This commit adds `generate_profile_data` option to record-minmax.

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

7ad3aac... by seongwoo

[one-cmds] fix one-quantize to propagate profile data properly (#6289)

This commit fixes `one-quantize` to propagate profile data properly.

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

c0567b6... by seongwoo

[one-cmds] Make up for insufficient description of one-codegen (#6285)

This commit makes up for insufficient description of one-codegen.

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

2c0581e... by seongwoo

[one-cmds] Fix one-codegen bug (#6283)

This commit fixes one-codegen bug.

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

44ae2a8... by Hanjoung Lee <email address hidden>

[onert] Fix deallocation bug (#6271)

* [onert] Fix deallocation bug

Fix deallocation bug that was introduced by #5926 .

As there was no way to deallocate a dynamic tensor memory of tensors
defined by other backends, dynamic tensor deallocation part needs to
be changed.

- Do not deallocate in FunctionSequence
- Introduce `ITensor::deallocBuffer` which deallocates the buffer
- Introduce `DeallocFunction` class for deallocation of tensors that
  are no longer used(only for Linear Executor)
- `IDynamicTensorManager`'s method `planDealloc` and `deallocInput` are
  no longer used

Plus, it now deallocates all tensors correctly, even between backend
boundaries.

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

* Update runtime/onert/core/src/exec/DynamicShapeInferer.cc

Co-authored-by: Hyun Sik Yoon <email address hidden>

Co-authored-by: Hyun Sik Yoon <email address hidden>