Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 687678269
  • Loading branch information
MediaPipe Team authored and copybara-github committed Oct 19, 2024
1 parent 24bc37c commit faf76ab
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion mediapipe/tasks/cc/vision/image_segmenter/calculators/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,22 @@ mediapipe_proto_library(
)

config_setting(
name = "force_gpu_segmentation",
name = "android_x86_32_and_force_gpu_segmentation",
constraint_values = [
"@platforms/cpu:x86_32",
"@platforms/os:android",
],
values = {
"define": "mediapipe_force_gpu_segmentation=1",
},
)

config_setting(
name = "android_x86_64_and_force_gpu_segmentation",
constraint_values = [
"@platforms/cpu:x86_64",
"@platforms/os:android",
],
values = {
"define": "mediapipe_force_gpu_segmentation=1",
},
Expand Down

0 comments on commit faf76ab

Please sign in to comment.