Skip to content

Commit cbd7468

Browse files
authored
version bump for updated fp8 support (#3638)
Fixing a version check for fp8 support. bump nvfuser version for PR #3624, Framework integration needs to guard against versions in order to decide whether to send fp8 operations to nvfuser
1 parent c7f40b7 commit cbd7468

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csrc/device_lower/analysis/device_version.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void MinimumDeviceVersion::dispatch(Val* val) {
3131
// https://docs.nvidia.com/cuda/archive/11.8.0/parallel-thread-execution/index.html#ptx-isa-version-7-8
3232
#elif (CUDA_VERSION >= 11080)
3333
ensureVersion(
34-
{8, 9},
34+
{9, 0},
3535
"Fusion contains Float8_xxx values which was introduced in Hopper (9.0)");
3636
#else
3737
NVF_ERROR(

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.23
1+
0.2.24

0 commit comments

Comments
 (0)