Skip to content

Commit 9202e6d

Browse files
Fix
Signed-off-by: Oleg Goncharov <[email protected]>
1 parent daf31ea commit 9202e6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

transformer_engine/common/cast/nvfp4/core_nvfp4.cuh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ __device__ __forceinline__ nvfp4_scale_t compute_decoding_scaling_factor(const f
5353
NVTE_ERROR("FP4 support requires CUDA 12.8+, but compile-time CUDA version is ", CUDA_VERSION);
5454
#endif // CUDA_VERSION >= 12080
5555
#else
56-
NVTE_DEVICE_ERROR("sm_100 or higher is required.");
56+
NVTE_ERROR("sm_100 or higher is required.");
5757
#endif // (defined __CUDA_ARCH__) && (__CUDA_ARCH__ >= 1000)
5858
}
5959
} // namespace quantization_and_transposition_SF
@@ -74,7 +74,7 @@ __device__ __forceinline__ fp8e4m3 compute_decoding_scaling_factor(const float b
7474
NVTE_ERROR("FP4 support requires CUDA 12.8+, but compile-time CUDA version is ", CUDA_VERSION);
7575
#endif // CUDA_VERSION >= 12080
7676
#else
77-
NVTE_DEVICE_ERROR("sm_100 or higher is required.");
77+
NVTE_ERROR("sm_100 or higher is required.");
7878
#endif // (defined __CUDA_ARCH__) && (__CUDA_ARCH__ >= 1000)
7979
}
8080
} // namespace quantization_SF

0 commit comments

Comments
 (0)