Commit 2ee1c0a7 authored by Rostyslav Geyyer's avatar Rostyslav Geyyer
Browse files

Move f8_t definition

parent 08e263e3
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
#pragma once #pragma once
#include "ck/utility/f8_utils.hpp"
#include "ck/utility/statically_indexed_array.hpp" #include "ck/utility/statically_indexed_array.hpp"
namespace ck { namespace ck {
...@@ -13,6 +12,7 @@ using half_t = _Float16; ...@@ -13,6 +12,7 @@ using half_t = _Float16;
#ifdef CK_EXPERIMENTAL_BIT_INT_EXTENSION_INT4 #ifdef CK_EXPERIMENTAL_BIT_INT_EXTENSION_INT4
using int4_t = _BitInt(4); using int4_t = _BitInt(4);
#endif #endif
using f8_t = uint8_t;
// vector_type // vector_type
template <typename T, index_t N> template <typename T, index_t N>
......
...@@ -3,10 +3,9 @@ ...@@ -3,10 +3,9 @@
#pragma once #pragma once
namespace ck { #include "ck/utility/data_type.hpp"
using f8_t = uint8_t; namespace ck {
using half_t = _Float16;
// fp8 rounding modes // fp8 rounding modes
// use standard for rounding to nearest, the faster one // use standard for rounding to nearest, the faster one
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#pragma once #pragma once
#include "ck/utility/data_type.hpp" #include "ck/utility/data_type.hpp"
#include "ck/utility/f8_utils.hpp"
#include "ck/utility/random_gen.hpp" #include "ck/utility/random_gen.hpp"
namespace ck { namespace ck {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment