Chrome can't use Absl's CHECK because of collisions with its own version. PiperOrigin-RevId: 561740965
71 lines
2.3 KiB
Python
71 lines
2.3 KiB
Python
# Copyright 2022 The MediaPipe Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
load("//mediapipe/framework/port:build_config.bzl", "mediapipe_proto_library")
|
|
|
|
licenses(["notice"])
|
|
|
|
package(default_visibility = ["//mediapipe/tasks:internal"])
|
|
|
|
cc_library(
|
|
name = "diffuser_gpu_header",
|
|
hdrs = ["diffuser_gpu.h"],
|
|
visibility = [
|
|
"//mediapipe/tasks/cc/vision/image_generator/diffuser:__pkg__",
|
|
],
|
|
)
|
|
|
|
mediapipe_proto_library(
|
|
name = "stable_diffusion_iterate_calculator_proto",
|
|
srcs = ["stable_diffusion_iterate_calculator.proto"],
|
|
deps = [
|
|
"//mediapipe/framework:calculator_options_proto",
|
|
"//mediapipe/framework:calculator_proto",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "stable_diffusion_iterate_calculator",
|
|
srcs = ["stable_diffusion_iterate_calculator.cc"],
|
|
deps = [
|
|
":diffuser_gpu_header",
|
|
":stable_diffusion_iterate_calculator_cc_proto",
|
|
"//mediapipe/framework:calculator_context",
|
|
"//mediapipe/framework:calculator_framework",
|
|
"//mediapipe/framework/api2:node",
|
|
"//mediapipe/framework/api2:port",
|
|
"//mediapipe/framework/deps:file_helpers",
|
|
"//mediapipe/framework/formats:image_frame",
|
|
"//mediapipe/framework/formats:tensor",
|
|
"@com_google_absl//absl/log:absl_log",
|
|
"@com_google_absl//absl/status",
|
|
],
|
|
alwayslink = 1,
|
|
)
|
|
|
|
cc_library(
|
|
name = "diffusion_plugins_output_calculator",
|
|
srcs = ["diffusion_plugins_output_calculator.cc"],
|
|
deps = [
|
|
"//mediapipe/framework:calculator_framework",
|
|
"//mediapipe/framework/api2:node",
|
|
"//mediapipe/framework/formats:tensor",
|
|
"@com_google_absl//absl/log:absl_check",
|
|
"@com_google_absl//absl/log:absl_log",
|
|
"@com_google_absl//absl/status",
|
|
"@com_google_absl//absl/status:statusor",
|
|
],
|
|
alwayslink = 1,
|
|
)
|