nnfw:release/1.5.0

Last commit made on 2020-06-25
Get this branch:
git clone -b release/1.5.0 https://git.launchpad.net/nnfw

Branch merges

Branch information

Name:
release/1.5.0
Repository:
lp:nnfw

Recent commits

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

[onert] Use flatbuffers dev package on gbs build (#2602)

GBS build uses flatbuffers devel package and link libflatbuffers.so to use tensorflow lite
Change test build default: not build

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

4f5e3a1... by Hyeongseok Oh <email address hidden>

[onert/nnpkg] Set backend after model load (#1861)

Fix nnpackage test bug: nnpackage_run set backend after model load

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

4cd46d4... by twoflower

Version up(to 1.5.0) in nnfw_version.h (#1685)

- Version up to 1.5.0 in nnfw_version.h

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

c013159... by twoflower

[1.5.0]Release note for 1.5.0 (#1649)

* Add release note 1.5.0

- This is the release note 1.5.0

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

* remove incorrect phrase

* bold to ONE word

* Update docs/release/1.5/release-note-1.5.0.md

Co-authored-by: Sung-Jae Lee <email address hidden>

Co-authored-by: Sung-Jae Lee <email address hidden>

43da60b... by twoflower

Tizen Version to 1.5.0 (#1634)

- This commit update onert version to 1.5.0 in tizen spec file

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

963cca7... by SaeHie Park <email address hidden>

[tfldum] Dump Tensor shape_signature (#1447)

This will enable dump of Tensor shape_signature if available

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

5c5b2b7... by Seok Namkoong <email address hidden>

[luci] Fix wrong shape inference of BCQGather (#1444)

This commit will fix wrong shape inference of `BCQGather`

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

0ad447a... by Sergei Barannikov <email address hidden>

[luci-interpreter] Use optimized kernels for Conv2D (#1438)

Use [legacy] optimized kernels for `Conv2D`.

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

Co-authored-by: Sergei Barannikov <email address hidden>

32c1607... by Hanjoung Lee <email address hidden>

[onert] Introduce logging macro VERBOSE_F (#1424)

Introduce logging macro `VERBOSE_F` for developers' covenience.
Note that `__func__` is standard since C++11 which is equivalent of
non-standard extension `__FUNCTION__`.

Usage example:

```cpp
void doSomething()
{
  VERBOSE_F() << "YOUR MESSAGE" << std::endl;
}
```

Output:

```
[doSomething] YOUR MESSAGE
```

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

467b176... by Hyun Sik Yoon <email address hidden>

[onert] Adding const to the param of getShape(..) (#1387)

This adds const to the param of getShape(..).

Signed-off-by: Hyun Sik Yoon <email address hidden>