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_FLOAT16CONVERTER_H
17#define GLOW_CONVERTER_FLOAT16CONVERTER_H
18
19namespace glow {
20
21class Function;
22struct PrecisionConfiguration;
23
24/// Converts all inputs and outputs of a function \p F from Float to Float16,
25/// and from UInt8FusedQTy to UInt8FusedFP16QTy, based on \p precConfig.
26void convertFunctionToFloat16(Function *F,
27 const PrecisionConfiguration &precConfig);
28
29/// Converts all inputs and outputs of a function \p F from Float to BFloat16,
30/// and from UInt8FusedQTy to UInt8FusedBFloat16QTy, based on \p precConfig.
31void convertFunctionToBFloat16(Function *F,
32 const PrecisionConfiguration &precConfig);
33} // namespace glow
34
35#endif /* GLOW_CONVERTER_FLOAT16CONVERTER_H */
36