1/**
2 * Copyright (c) Glow Contributors. See CONTRIBUTORS file.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef GLOW_CONVERTER_FUSEDROWWISECONVERTER_H
17#define GLOW_CONVERTER_FUSEDROWWISECONVERTER_H
18
19namespace glow {
20
21class Function;
22struct PrecisionConfiguration;
23
24/// Converts all Fp16 scale/offset of a function \p F to Fp32. Now only support
25/// FusedSLWS's data param, from UInt8FusedFP16QTy -> UInt8FusedQTy, and
26/// UInt4FusedFP16QTy -> UInt4FusedQTy
27void convertFunctionToFP32ScaleOffset(Function *F,
28 const PrecisionConfiguration &precConfig);
29
30/// Converts indices in FusedSLWS from Int32 to Int64, based on \p precConfig.
31void convertFunctionIndicesToInt64(Function *F,
32 const PrecisionConfiguration &precConfig);
33} // namespace glow
34
35#endif /* GLOW_CONVERTER_FUSEDROWWISECONVERTER_H */
36