Fixes typo in GlCalculatorHelper::UpdateContract argument name
PiperOrigin-RevId: 579832146
This commit is contained in:
parent
0b53c9752f
commit
5f0d24d741
|
@ -65,7 +65,7 @@ class ImageCloneCalculator : public Node {
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
MP_RETURN_IF_ERROR(mediapipe::GlCalculatorHelper::UpdateContract(
|
MP_RETURN_IF_ERROR(mediapipe::GlCalculatorHelper::UpdateContract(
|
||||||
cc, /*requesst_gpu_as_optional=*/true));
|
cc, /*request_gpu_as_optional=*/true));
|
||||||
#endif // MEDIAPIPE_DISABLE_GPU
|
#endif // MEDIAPIPE_DISABLE_GPU
|
||||||
return absl::OkStatus();
|
return absl::OkStatus();
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,7 +118,7 @@ absl::Status SegmentationSmoothingCalculator::GetContract(
|
||||||
|
|
||||||
#if !MEDIAPIPE_DISABLE_GPU
|
#if !MEDIAPIPE_DISABLE_GPU
|
||||||
MP_RETURN_IF_ERROR(mediapipe::GlCalculatorHelper::UpdateContract(
|
MP_RETURN_IF_ERROR(mediapipe::GlCalculatorHelper::UpdateContract(
|
||||||
cc, /*requesst_gpu_as_optional=*/true));
|
cc, /*request_gpu_as_optional=*/true));
|
||||||
#endif // !MEDIAPIPE_DISABLE_GPU
|
#endif // !MEDIAPIPE_DISABLE_GPU
|
||||||
|
|
||||||
return absl::OkStatus();
|
return absl::OkStatus();
|
||||||
|
|
|
@ -206,7 +206,7 @@ class WarpAffineCalculatorImpl : public mediapipe::api2::NodeImpl<InterfaceT> {
|
||||||
if constexpr (std::is_same_v<InterfaceT, WarpAffineCalculatorGpu> ||
|
if constexpr (std::is_same_v<InterfaceT, WarpAffineCalculatorGpu> ||
|
||||||
std::is_same_v<InterfaceT, WarpAffineCalculator>) {
|
std::is_same_v<InterfaceT, WarpAffineCalculator>) {
|
||||||
MP_RETURN_IF_ERROR(mediapipe::GlCalculatorHelper::UpdateContract(
|
MP_RETURN_IF_ERROR(mediapipe::GlCalculatorHelper::UpdateContract(
|
||||||
cc, /*requesst_gpu_as_optional=*/true));
|
cc, /*request_gpu_as_optional=*/true));
|
||||||
}
|
}
|
||||||
return absl::OkStatus();
|
return absl::OkStatus();
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,8 +57,8 @@ void GlCalculatorHelper::InitializeForTest(GpuResources* gpu_resources) {
|
||||||
|
|
||||||
// static
|
// static
|
||||||
absl::Status GlCalculatorHelper::UpdateContract(CalculatorContract* cc,
|
absl::Status GlCalculatorHelper::UpdateContract(CalculatorContract* cc,
|
||||||
bool requesst_gpu_as_optional) {
|
bool request_gpu_as_optional) {
|
||||||
if (requesst_gpu_as_optional) {
|
if (request_gpu_as_optional) {
|
||||||
cc->UseService(kGpuService).Optional();
|
cc->UseService(kGpuService).Optional();
|
||||||
} else {
|
} else {
|
||||||
cc->UseService(kGpuService);
|
cc->UseService(kGpuService);
|
||||||
|
|
|
@ -68,7 +68,7 @@ class GlCalculatorHelper {
|
||||||
// This method can be called from GetContract to set up the needed GPU
|
// This method can be called from GetContract to set up the needed GPU
|
||||||
// resources.
|
// resources.
|
||||||
static absl::Status UpdateContract(CalculatorContract* cc,
|
static absl::Status UpdateContract(CalculatorContract* cc,
|
||||||
bool requesst_gpu_as_optional = false);
|
bool request_gpu_as_optional = false);
|
||||||
|
|
||||||
// This method can be called from FillExpectations to set the correct types
|
// This method can be called from FillExpectations to set the correct types
|
||||||
// for the shared GL input side packet(s).
|
// for the shared GL input side packet(s).
|
||||||
|
|
Loading…
Reference in New Issue
Block a user