Skip to content

Commit a83bd83

Browse files
committed
uses libedgetpu-0.1.8 and tensorflow-2.15.0
1 parent 2b8c04d commit a83bd83

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v0.3.4 (2024-01-23)
4+
[Browse the Repository](https://github.com/cocoa-xu/tflite_beam/tree/v0.3.4) | [Released Assets](https://github.com/cocoa-xu/tflite_beam/releases/tag/v0.3.4)
5+
6+
### Changed
7+
- [deps] Use libedgetpu v0.1.8.
8+
- Use tensorflow v2.15.0.
9+
310
## v0.3.3 (2023-07-21)
411
[Browse the Repository](https://github.com/cocoa-xu/tflite_beam/tree/v0.3.3) | [Released Assets](https://github.com/cocoa-xu/tflite_beam/releases/tag/v0.3.3)
512

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ endif
2323
# Tensorflow
2424
TFLITE_USE_GIT_HEAD ?= false
2525
TFLITE_GIT_REPO ?= "https://github.com/tensorflow/tensorflow.git"
26-
TFLITE_VER ?= 2.13.0
26+
TFLITE_VER ?= 2.15.0
2727
TFLITE_VER_V = v$(TFLITE_VER)
2828
ifneq ($(TFLITE_USE_GIT_HEAD), false)
2929
TFLITE_VER_V=$(TFLITE_USE_GIT_BRANCH)

scripts/copy_libedgetpu_runtime.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ TFLITE_BEAM_CORAL_LIBEDGETPU_RUNTIME="$6"
99
TFLITE_BEAM_CACHE_DIR="$7"
1010
TFLITE_BEAM_COMPILE_WITH_REBAR="$8"
1111

12-
LIBEDGETPU_VERSION="0.1.7"
12+
LIBEDGETPU_VERSION="0.1.8"
1313
LIBEDGETPU_BASE_URL="https://github.com/cocoa-xu/libedgetpu/releases/download/v${LIBEDGETPU_VERSION}"
1414

1515
get_libedgetpu_triplet() {

tflite_beam_precompiled.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-define(PRECOMPILED_DOWNLOAD_URL, "https://github.com/cocoa-xu/tflite_beam/releases/download/v~s/~s").
66
-define(TFLITE_BEAM_SO_FILE, "priv/tflite_beam.so").
77
-define(TFLITE_BEAM_DLL_FILE, "priv/tflite_beam.dll").
8-
-define(LIBEDGETPU_RUNTIME_VERSION, "0.1.7").
8+
-define(LIBEDGETPU_RUNTIME_VERSION, "0.1.8").
99

1010
-include_lib("kernel/include/file.hrl").
1111

0 commit comments

Comments
 (0)