Skip to content

Commit

Permalink
Internal exhasutive test refactoring
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 668074337
  • Loading branch information
Gregory Pataky authored and The ml_dtypes Authors committed Aug 27, 2024
1 parent f053b3c commit 8889849
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ml_dtypes/include/float8.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ class float8_base {
explicit EIGEN_DEVICE_FUNC operator double() const {
return ConvertTo<double>(derived());
}
explicit EIGEN_DEVICE_FUNC operator float() const {
EIGEN_DEVICE_FUNC operator float() const {
return ConvertTo<float>(derived());
}
explicit EIGEN_DEVICE_FUNC operator Eigen::bfloat16() const {
EIGEN_DEVICE_FUNC operator Eigen::bfloat16() const {
return ConvertTo<Eigen::bfloat16>(derived());
}
explicit EIGEN_DEVICE_FUNC operator Eigen::half() const {
EIGEN_DEVICE_FUNC operator Eigen::half() const {
return ConvertTo<Eigen::half>(derived());
}
explicit EIGEN_DEVICE_FUNC operator bool() const {
Expand Down

0 comments on commit 8889849

Please sign in to comment.