From 60c8251b7285b5eb16b0d43014c862e75d208605 Mon Sep 17 00:00:00 2001 From: Christian Sigg Date: Fri, 1 Dec 2023 15:52:19 +0100 Subject: [PATCH] Remove unused variables (#1195) --- test/unit/core/float8.cu | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/unit/core/float8.cu b/test/unit/core/float8.cu index 7ed803e5..09fe2ac4 100644 --- a/test/unit/core/float8.cu +++ b/test/unit/core/float8.cu @@ -42,8 +42,6 @@ TEST(float_e4m3_t, host_conversion) { using FP8 = cutlass::float_e4m3_t; using Base = typename FP8::Base; - const float max_abs_normal_val = 448.0f; // 0.1111.110 - const float min_abs_subnormal_val = 0.001953125f; // 0.0000.001 for (int i = -8; i < 8; ++i) { float f = static_cast(i); @@ -75,8 +73,6 @@ TEST(float_e4m3_t, host_conversion) { TEST(float_e5m2_t, host_conversion) { using FP8 = cutlass::float_e5m2_t; using Base = typename FP8::Base; - const float max_abs_normal_val = 57344.0f; // 0.11110.11 - const float min_abs_subnormal_val = 0.0000152588f; // 0.00000.01 for (int i = -8; i < 8; ++i) { float f = static_cast(i);