1 /* Copyright 2020 The TensorFlow Authors. All Rights Reserved. 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14 ==============================================================================*/ 15 16 #include "tensorflow/lite/delegates/gpu/common/task/weights_layout.h" 17 18 namespace tflite { 19 namespace gpu { 20 GetOutputGroupSize() const21int WeightsDescription::GetOutputGroupSize() const { 22 if (layout == WeightsLayout::kOHWIOGroupI4O4 || 23 layout == WeightsLayout::kOHWIOGroupO4I4 || 24 layout == WeightsLayout::k2DX4I4YIsHWIAndXIsOOGroupO4 || 25 layout == WeightsLayout::k2DX4O4YIsHWIAndXIsOOGroupI4) { 26 return output_group_size; 27 } else { 28 return 1; 29 } 30 } 31 IsI4O4() const32bool WeightsDescription::IsI4O4() const { 33 return layout == WeightsLayout::kOHWIOGroupI4O4 || 34 layout == WeightsLayout::kOICustomSpatialI4O4 || 35 layout == WeightsLayout::k2DX4I4YIsHWIAndXIsOOGroupO4; 36 } 37 IsO4I4() const38bool WeightsDescription::IsO4I4() const { 39 return layout == WeightsLayout::kOHWIOGroupO4I4 || 40 layout == WeightsLayout::kOICustomSpatialO4I4 || 41 layout == WeightsLayout::k2DX4O4YIsHWIAndXIsOOGroupI4; 42 } 43 44 } // namespace gpu 45 } // namespace tflite 46