Skip to content

Commit 0fbb553

Browse files
committed
reset tests/cpp
Signed-off-by: Phuong Nguyen <phuonguyen@nvidia.com>
1 parent a8ce721 commit 0fbb553

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

tests/cpp/test_common.cu

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ const std::string &typeName(DType type) {
5858
{DType::kInt32, "int32"},
5959
{DType::kInt64, "int64"},
6060
{DType::kFloat32, "float32"},
61-
{DType::kFloat64, "float64"},
6261
{DType::kFloat16, "float16"},
6362
{DType::kBFloat16, "bfloat16"},
6463
{DType::kFloat8E4M3, "float8e4m3"},

tests/cpp/test_common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ struct BitsNumber {
8484
template <typename T>
8585
struct TypeInfo {
8686
#if FP4_TYPE_SUPPORTED
87-
using types = std::tuple<byte, int16, int32, int64, fp32, fp16, bf16, fp8e4m3, fp8e5m2, fp8e8m0, fp4e2m1, fp64>;
87+
using types = std::tuple<byte, int16, int32, int64, fp32, fp16, bf16, fp8e4m3, fp8e5m2, fp8e8m0, fp4e2m1>;
8888
#else
89-
using types = std::tuple<byte, int16, int32, int64, fp32, fp16, bf16, fp8e4m3, fp8e5m2, fp8e8m0, fp64>;
89+
using types = std::tuple<byte, int16, int32, int64, fp32, fp16, bf16, fp8e4m3, fp8e5m2, fp8e8m0>;
9090
#endif
9191

9292
template <typename U, DType current>

0 commit comments

Comments
 (0)