"src/targets/vscode:/vscode.git/clone" did not exist on "e637b5aabe921d3a55f6f8746169c4adb686494e"
precision.hpp 312 Bytes
Newer Older
kahmed10's avatar
kahmed10 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MIGRAPHX_GUARD_RTGLIB_PRECISION_HPP
#define MIGRAPHX_GUARD_RTGLIB_PRECISION_HPP

namespace migraphx {
namespace driver {
inline namespace MIGRAPHX_INLINE_NS {

enum class precision
{
    fp32,
    fp16,
    int8
};

} // namespace MIGRAPHX_INLINE_NS
} // namespace driver
} // namespace migraphx

#endif