summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
author이춘석/On-Device Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>2019-07-15 19:24:34 +0900
committerGitHub Enterprise <noreply-CODE@samsung.com>2019-07-15 19:24:34 +0900
commitc9bca3e98b99396ca27f4fd99a0e6ad36b2dd83e (patch)
tree71c5fd419a90b60deb8186e23c0a289463580475 /docs
parent64c3690d625bebc4ba6db6a863257f879bd6f48e (diff)
downloadnnfw-c9bca3e98b99396ca27f4fd99a0e6ad36b2dd83e.tar.gz
nnfw-c9bca3e98b99396ca27f4fd99a0e6ad36b2dd83e.tar.bz2
nnfw-c9bca3e98b99396ca27f4fd99a0e6ad36b2dd83e.zip
Upgrade to tensorflow v1.13.1 (#5590)
* Upgrade to tensorflow v1.13.1 - update link to v1.13.1 - tensorflow/contribe/lite to tensorflow/lite - TFLITE_MINOR_VER to 13 Signed-off-by: Chunseok Lee <chunseok.lee@samsung.com> * upgrade absl to 389ec3f90 * add custom for SquaredDifference * Fix x64 build error(Eigen) - update eigen version to 88fc23324517 * fix wrong comment : lite -> contrib/lite
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/HowtoMakeSampleAppOnNnfw.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/HowtoMakeSampleAppOnNnfw.md b/docs/howto/HowtoMakeSampleAppOnNnfw.md
index 0bd65c4b4..d272a8390 100644
--- a/docs/howto/HowtoMakeSampleAppOnNnfw.md
+++ b/docs/howto/HowtoMakeSampleAppOnNnfw.md
@@ -8,7 +8,7 @@ To use tensorflow lite, you need to prepare tensorflow lite model file, and you
You can select one of kernel register: tensorflow lite official kernel register or extended register (for pre-implemented custom op)
```
-#include "tensorflow/contrib/lite/kernels/register.h"
+#include "tensorflow/lite/kernels/register.h"
#include "tflite/ext/kernels/register.h"
```