Fixed typo from recent CL.

PiperOrigin-RevId: 336930577
Change-Id: I25865785399d8c83a6888755910314b227ae253d
This commit is contained in:
Raman Sarokin 2020-10-13 12:26:08 -07:00 committed by TensorFlower Gardener
parent ed26ad25f3
commit d871221f2f

View File

@ -46,7 +46,8 @@ std::unique_ptr<GPUOperation> SelectConvolutionWinogradAdreno(
const Convolution2DAttributes& attr, const BHWC& dst_shape,
const DeviceInfo& device_info, const OperationDef& op_def,
ModelHints hints) {
ConvPowerVR conv = CreateConvPowerVR(device_info, op_def, attr, &dst_shape);
ConvPowerVR conv =
CreateConvPowerVRWino4x4To6x6(device_info, op_def, attr, &dst_shape);
return absl::make_unique<ConvPowerVR>(std::move(conv));
}