Skip to content

Commit

Permalink
[tflite] make label_image build
Browse files Browse the repository at this point in the history
label_image depends on old gpu:gl_delegate, which no long built.
update the dependency to use use gpu:delegate
  • Loading branch information
freedomtan committed Mar 25, 2020
1 parent 983a5e2 commit 347fef6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tensorflow/lite/examples/label_image/BUILD
Expand Up @@ -39,11 +39,11 @@ cc_binary(
"@com_google_absl//absl/memory",
] + select({
"//tensorflow:android": [
"//tensorflow/lite/delegates/gpu:gl_delegate",
"//tensorflow/lite/delegates/gpu:delegate",
"//tensorflow/lite/experimental/delegates/hexagon:hexagon_delegate",
],
"//tensorflow:android_arm64": [
"//tensorflow/lite/delegates/gpu:gl_delegate",
"//tensorflow/lite/delegates/gpu:delegate",
"//tensorflow/lite/experimental/delegates/hexagon:hexagon_delegate",
],
"//conditions:default": [],
Expand All @@ -67,11 +67,11 @@ cc_library(
"//tensorflow/lite/schema:schema_fbs",
] + select({
"//tensorflow:android": [
"//tensorflow/lite/delegates/gpu:gl_delegate",
"//tensorflow/lite/delegates/gpu:delegate",
"//tensorflow/lite/experimental/delegates/hexagon:hexagon_delegate",
],
"//tensorflow:android_arm64": [
"//tensorflow/lite/delegates/gpu:gl_delegate",
"//tensorflow/lite/delegates/gpu:delegate",
"//tensorflow/lite/experimental/delegates/hexagon:hexagon_delegate",
],
"//conditions:default": [],
Expand Down

0 comments on commit 347fef6

Please sign in to comment.