Skip to content

Commit

Permalink
version bump for updated fp8 support (#3638)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jjsjann123 authored Dec 24, 2024
1 parent c7f40b7 commit cbd7468
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion csrc/device_lower/analysis/device_version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void MinimumDeviceVersion::dispatch(Val* val) {
// https://docs.nvidia.com/cuda/archive/11.8.0/parallel-thread-execution/index.html#ptx-isa-version-7-8
#elif (CUDA_VERSION >= 11080)
ensureVersion(
{8, 9},
{9, 0},
"Fusion contains Float8_xxx values which was introduced in Hopper (9.0)");
#else
NVF_ERROR(
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.23
0.2.24

0 comments on commit cbd7468

Please sign in to comment.