Text-to-Image
Diffusers
Safetensors
MageFlowPipeline
ajh
mage-flow
mage-flow-nvfp4-balanced-ajh
nvfp4
blackwell
qwen3-vl
quantization
balanced
Instructions to use ajh-code/Mage-Flow-NVFP4-Balanced-AJH with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ajh-code/Mage-Flow-NVFP4-Balanced-AJH with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ajh-code/Mage-Flow-NVFP4-Balanced-AJH", torch_dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
File size: 40,780 Bytes
ca8b3a9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 | #include "nvfp4_linear.h"
#include <cuda_bf16.h>
#include <cuda_fp4.h>
#include <cuda_fp8.h>
#include <cuda_runtime.h>
#include <cublasLt.h>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <cstdint>
#include <cstring>
#include <limits>
#include <mutex>
#include <stdexcept>
#include <string>
namespace {
constexpr int kAbiVersion = 1;
constexpr int kFp4BlockElements = 16;
constexpr int kScaleTileOuter = 128;
constexpr int kScaleTileInner = 4;
constexpr int kWarpsPerQuantBlock = 8;
constexpr int kQuantThreads = 32 * kWarpsPerQuantBlock;
constexpr int kReduceThreads = 256;
constexpr int kReduceItemsPerThread = 4;
constexpr int kBiasThreads = 256;
constexpr float kFp4E2M1Max = 6.0f;
constexpr float kFp4TensorScaleMax = 448.0f;
constexpr float kTensorScaleDenominator =
kFp4E2M1Max * kFp4TensorScaleMax;
constexpr size_t kWorkspaceBytes = 64ull * 1024ull * 1024ull;
thread_local std::string g_last_error;
[[noreturn]] void fail(const std::string& message) {
throw std::runtime_error(message);
}
float parse_positive_scale_multiplier(
const char* environment_name) {
const char* raw = std::getenv(environment_name);
if (raw == nullptr || raw[0] == '\0') {
return 1.0f;
}
char* end = nullptr;
const float value = std::strtof(raw, &end);
if (end == raw || end == nullptr || end[0] != '\0' ||
!std::isfinite(value) || value <= 0.0f || value > 4.0f) {
fail(
std::string(environment_name) +
" must be a finite float in (0, 4]");
}
return value;
}
struct ActivationScaleMultipliers {
float up = 1.0f;
float down = 1.0f;
bool four_over_six = false;
bool mse_five_six_seven = false;
bool weight_four_over_six = false;
};
const ActivationScaleMultipliers& activation_scale_multipliers() {
static const ActivationScaleMultipliers values = []() {
ActivationScaleMultipliers parsed;
parsed.up = parse_positive_scale_multiplier(
"MAGE_NVFP4_UP_ACTIVATION_SCALE_MULTIPLIER");
parsed.down = parse_positive_scale_multiplier(
"MAGE_NVFP4_DOWN_ACTIVATION_SCALE_MULTIPLIER");
const char* search =
std::getenv("MAGE_NVFP4_ACTIVATION_SCALE_SEARCH");
if (search == nullptr || search[0] == '\0' ||
std::strcmp(search, "amax") == 0) {
parsed.four_over_six = false;
parsed.mse_five_six_seven = false;
} else if (std::strcmp(search, "four_over_six") == 0) {
parsed.four_over_six = true;
parsed.mse_five_six_seven = false;
} else if (std::strcmp(search, "mse_5_6_7") == 0) {
parsed.four_over_six = false;
parsed.mse_five_six_seven = true;
} else {
fail(
"MAGE_NVFP4_ACTIVATION_SCALE_SEARCH must be "
"'amax', 'four_over_six', or 'mse_5_6_7'");
}
const char* weight_search =
std::getenv("MAGE_NVFP4_WEIGHT_SCALE_SEARCH");
if (weight_search == nullptr || weight_search[0] == '\0' ||
std::strcmp(weight_search, "amax") == 0) {
parsed.weight_four_over_six = false;
} else if (
std::strcmp(weight_search, "four_over_six") == 0) {
parsed.weight_four_over_six = true;
} else {
fail(
"MAGE_NVFP4_WEIGHT_SCALE_SEARCH must be "
"'amax' or 'four_over_six'");
}
return parsed;
}();
return values;
}
float activation_scale_multiplier_for_shape(int k, int n) {
const auto& values = activation_scale_multipliers();
if (k == 3072 && n == 12288) {
return values.up;
}
if (k == 12288 && n == 3072) {
return values.down;
}
return 1.0f;
}
bool use_four_over_six_activation_search() {
return activation_scale_multipliers().four_over_six;
}
bool use_mse_five_six_seven_activation_search() {
return activation_scale_multipliers().mse_five_six_seven;
}
bool use_four_over_six_weight_search() {
return activation_scale_multipliers().weight_four_over_six;
}
#define CUDA_CHECK(expr) \
do { \
const cudaError_t status_ = (expr); \
if (status_ != cudaSuccess) { \
fail(std::string(#expr) + ": " + cudaGetErrorString(status_)); \
} \
} while (0)
#define CUBLASLT_CHECK(expr) \
do { \
const cublasStatus_t status_ = (expr); \
if (status_ != CUBLAS_STATUS_SUCCESS) { \
fail(std::string(#expr) + " failed with cuBLASLt status " + \
std::to_string(static_cast<int>(status_))); \
} \
} while (0)
int round_up(int value, int multiple) {
if (value <= 0 || multiple <= 0 ||
value > std::numeric_limits<int>::max() - (multiple - 1)) {
fail("invalid or overflowing round_up arguments");
}
return ((value + multiple - 1) / multiple) * multiple;
}
size_t checked_multiply(size_t left, size_t right, const char* label) {
if (right != 0 && left > std::numeric_limits<size_t>::max() / right) {
fail(std::string(label) + " size overflows size_t");
}
return left * right;
}
size_t round_up_divide(size_t dividend, size_t divisor) {
return (dividend + divisor - 1) / divisor;
}
struct ScaleLayout {
int inner_dim = 0;
int outer_tiles = 0;
size_t bytes = 0;
};
ScaleLayout make_scale_layout(int rows_k, int outer_columns) {
if (rows_k <= 0 || rows_k % 16 != 0 || outer_columns <= 0) {
fail("scale layout requires positive K divisible by 16 and positive M/N");
}
ScaleLayout layout;
layout.inner_dim = round_up(rows_k / kFp4BlockElements, kScaleTileInner);
layout.outer_tiles =
(outer_columns + kScaleTileOuter - 1) / kScaleTileOuter;
layout.bytes = checked_multiply(
checked_multiply(static_cast<size_t>(layout.outer_tiles),
static_cast<size_t>(layout.inner_dim), "scale tensor"),
static_cast<size_t>(kScaleTileOuter), "scale tensor");
return layout;
}
size_t packed_weight_bytes_checked(int n, int k) {
if (n <= 0 || k <= 0 || n % 8 != 0 || k % 32 != 0) {
fail("NVFP4 weight requires N divisible by 8 and K divisible by 32");
}
return checked_multiply(static_cast<size_t>(n),
static_cast<size_t>(k), "packed weight") /
2;
}
size_t host_scale_offset(int outer, int inner_scale, int scale_inner_dim) {
const int outer_tile = outer / kScaleTileOuter;
const int local_outer = outer % kScaleTileOuter;
const int local_inner = inner_scale % kScaleTileInner;
const int inner_tile_start = inner_scale - local_inner;
const size_t tile_base =
static_cast<size_t>(inner_tile_start +
outer_tile * scale_inner_dim) *
kScaleTileOuter;
return tile_base + static_cast<size_t>(local_outer % 32) * 16 +
static_cast<size_t>(local_outer / 32) * 4 + local_inner;
}
__device__ __forceinline__ size_t device_scale_offset(
int outer, int inner_scale, int scale_inner_dim) {
const int outer_tile = outer / kScaleTileOuter;
const int local_outer = outer % kScaleTileOuter;
const int local_inner = inner_scale % kScaleTileInner;
const int inner_tile_start = inner_scale - local_inner;
const size_t tile_base =
static_cast<size_t>(inner_tile_start +
outer_tile * scale_inner_dim) *
kScaleTileOuter;
return tile_base + static_cast<size_t>(local_outer % 32) * 16 +
static_cast<size_t>(local_outer / 32) * 4 + local_inner;
}
float host_ue4m3_to_float(uint8_t raw) {
const __half_raw half_raw = __nv_cvt_fp8_to_halfraw(raw, __NV_E4M3);
return __half2float(static_cast<__half>(half_raw));
}
__device__ __forceinline__ float device_ue4m3_to_float(uint8_t raw) {
const __half_raw half_raw = __nv_cvt_fp8_to_halfraw(raw, __NV_E4M3);
return __half2float(static_cast<__half>(half_raw));
}
__device__ __forceinline__ float tensor_scale_from_amax(float amax) {
return amax == 0.0f ? 1.0f : amax / kTensorScaleDenominator;
}
__device__ __forceinline__ float nearest_e2m1_value(float value) {
const float magnitude = fabsf(value);
float quantized = 0.0f;
if (magnitude > 0.25f) {
quantized = magnitude <= 0.75f ? 0.5f
: magnitude <= 1.25f ? 1.0f
: magnitude <= 1.75f ? 1.5f
: magnitude <= 2.5f ? 2.0f
: magnitude <= 3.5f ? 3.0f
: magnitude <= 5.0f ? 4.0f
: 6.0f;
}
return copysignf(quantized, value);
}
__device__ __forceinline__ float e2m1_reconstruction_error(
float value, float scale) {
if (scale == 0.0f) {
return value * value;
}
const float reconstructed =
nearest_e2m1_value(value / scale) * scale;
const float difference = value - reconstructed;
return difference * difference;
}
float host_nearest_e2m1_value(float value) {
const float magnitude = std::abs(value);
float quantized = 0.0f;
if (magnitude > 0.25f) {
quantized = magnitude <= 0.75f ? 0.5f
: magnitude <= 1.25f ? 1.0f
: magnitude <= 1.75f ? 1.5f
: magnitude <= 2.5f ? 2.0f
: magnitude <= 3.5f ? 3.0f
: magnitude <= 5.0f ? 4.0f
: 6.0f;
}
return std::copysign(quantized, value);
}
float host_e2m1_reconstruction_error(
float value, float scale) {
if (scale == 0.0f) {
return value * value;
}
const float reconstructed =
host_nearest_e2m1_value(value / scale) * scale;
const float difference = value - reconstructed;
return difference * difference;
}
__device__ __forceinline__ float block_reduce_max(float value) {
__shared__ float shared[kReduceThreads];
shared[threadIdx.x] = value;
__syncthreads();
for (int offset = kReduceThreads / 2; offset > 0; offset >>= 1) {
if (threadIdx.x < offset) {
shared[threadIdx.x] =
fmaxf(shared[threadIdx.x], shared[threadIdx.x + offset]);
}
__syncthreads();
}
return shared[0];
}
__global__ void reduce_abs_max_bf16(
const __nv_bfloat16* source, float* block_maxima,
size_t element_count) {
const size_t block_start =
static_cast<size_t>(blockIdx.x) * kReduceThreads *
kReduceItemsPerThread;
float local_max = 0.0f;
for (int item = 0; item < kReduceItemsPerThread; ++item) {
const size_t index =
block_start + static_cast<size_t>(threadIdx.x) +
static_cast<size_t>(item) * kReduceThreads;
if (index < element_count) {
local_max =
fmaxf(local_max, fabsf(__bfloat162float(source[index])));
}
}
const float block_max = block_reduce_max(local_max);
if (threadIdx.x == 0) {
block_maxima[blockIdx.x] = block_max;
}
}
__global__ void reduce_max_float(
const float* source, float* block_maxima, size_t element_count) {
const size_t block_start =
static_cast<size_t>(blockIdx.x) * kReduceThreads *
kReduceItemsPerThread;
float local_max = 0.0f;
for (int item = 0; item < kReduceItemsPerThread; ++item) {
const size_t index =
block_start + static_cast<size_t>(threadIdx.x) +
static_cast<size_t>(item) * kReduceThreads;
if (index < element_count) {
local_max = fmaxf(local_max, source[index]);
}
}
const float block_max = block_reduce_max(local_max);
if (threadIdx.x == 0) {
block_maxima[blockIdx.x] = block_max;
}
}
__global__ void finalize_activation_scale(
const float* activation_amax, const float* weight_tensor_scale,
float* activation_tensor_scale, float* fp4_alpha,
float activation_scale_multiplier) {
if (blockIdx.x == 0 && threadIdx.x == 0) {
const float activation_scale =
tensor_scale_from_amax(activation_amax[0]) *
activation_scale_multiplier;
activation_tensor_scale[0] = activation_scale;
fp4_alpha[0] = weight_tensor_scale[0] * activation_scale;
}
}
// logical_m may be smaller than padded_m. Padded rows are written as exact
// FP4 zero with zero block scales, so reusable scratch never exposes a prior
// call's tail.
__global__ void dynamic_quantize_activation(
const __nv_bfloat16* source, uint8_t* destination_fp4,
uint8_t* destination_scales,
const float* activation_tensor_scale, int rows_k, int logical_m,
int scale_inner_dim, uint64_t padded_scale_blocks,
bool four_over_six, bool mse_five_six_seven) {
const int lane = threadIdx.x & 31;
const int warp_in_block = threadIdx.x >> 5;
const uint64_t logical_block =
static_cast<uint64_t>(blockIdx.x) * kWarpsPerQuantBlock +
static_cast<uint64_t>(warp_in_block);
if (logical_block >= padded_scale_blocks) {
return;
}
const int blocks_per_column = rows_k / kFp4BlockElements;
const int outer =
static_cast<int>(logical_block / blocks_per_column);
const int inner_scale = static_cast<int>(
logical_block -
static_cast<uint64_t>(outer) * blocks_per_column);
const int first_row = inner_scale * kFp4BlockElements;
const size_t column_base = static_cast<size_t>(outer) * rows_k;
const bool valid_outer = outer < logical_m;
const float tensor_scale = activation_tensor_scale[0];
const float inverse_tensor_scale =
tensor_scale == 0.0f ? 0.0f : 1.0f / tensor_scale;
float value0 = 0.0f;
float value1 = 0.0f;
float magnitude = 0.0f;
size_t destination_source_index = 0;
if (lane < kFp4BlockElements / 2) {
const int row0 = first_row + lane * 2;
destination_source_index = column_base + row0;
if (valid_outer) {
value0 = __bfloat162float(source[destination_source_index]) *
inverse_tensor_scale;
value1 = __bfloat162float(source[destination_source_index + 1]) *
inverse_tensor_scale;
magnitude = fmaxf(fabsf(value0), fabsf(value1));
}
}
for (int offset = 16; offset > 0; offset >>= 1) {
magnitude =
fmaxf(magnitude,
__shfl_down_sync(0xffffffffU, magnitude, offset));
}
float rounded_scale_six = 0.0f;
float rounded_scale_four = 0.0f;
float rounded_scale_five = 0.0f;
float rounded_scale_seven = 0.0f;
uint8_t scale_raw_six = 0;
uint8_t scale_raw_four = 0;
uint8_t scale_raw_five = 0;
uint8_t scale_raw_seven = 0;
if (lane == 0) {
scale_raw_six = __nv_cvt_float_to_fp8(
magnitude / kFp4E2M1Max, __NV_SATFINITE, __NV_E4M3);
rounded_scale_six = device_ue4m3_to_float(scale_raw_six);
if (four_over_six) {
scale_raw_four = __nv_cvt_float_to_fp8(
magnitude / 4.0f, __NV_SATFINITE, __NV_E4M3);
rounded_scale_four = device_ue4m3_to_float(scale_raw_four);
}
if (mse_five_six_seven) {
scale_raw_five = __nv_cvt_float_to_fp8(
magnitude / 5.0f, __NV_SATFINITE, __NV_E4M3);
rounded_scale_five = device_ue4m3_to_float(scale_raw_five);
scale_raw_seven = __nv_cvt_float_to_fp8(
magnitude / 7.0f, __NV_SATFINITE, __NV_E4M3);
rounded_scale_seven = device_ue4m3_to_float(scale_raw_seven);
}
}
rounded_scale_six =
__shfl_sync(0xffffffffU, rounded_scale_six, 0);
rounded_scale_four =
__shfl_sync(0xffffffffU, rounded_scale_four, 0);
rounded_scale_five =
__shfl_sync(0xffffffffU, rounded_scale_five, 0);
rounded_scale_seven =
__shfl_sync(0xffffffffU, rounded_scale_seven, 0);
float error_six = 0.0f;
float error_four = 0.0f;
float error_five = 0.0f;
float error_seven = 0.0f;
if ((four_over_six || mse_five_six_seven) &&
lane < kFp4BlockElements / 2) {
error_six =
e2m1_reconstruction_error(value0, rounded_scale_six) +
e2m1_reconstruction_error(value1, rounded_scale_six);
if (four_over_six) {
error_four =
e2m1_reconstruction_error(value0, rounded_scale_four) +
e2m1_reconstruction_error(value1, rounded_scale_four);
}
if (mse_five_six_seven) {
error_five =
e2m1_reconstruction_error(value0, rounded_scale_five) +
e2m1_reconstruction_error(value1, rounded_scale_five);
error_seven =
e2m1_reconstruction_error(value0, rounded_scale_seven) +
e2m1_reconstruction_error(value1, rounded_scale_seven);
}
}
for (int offset = 16; offset > 0; offset >>= 1) {
error_six +=
__shfl_down_sync(0xffffffffU, error_six, offset);
error_four +=
__shfl_down_sync(0xffffffffU, error_four, offset);
error_five +=
__shfl_down_sync(0xffffffffU, error_five, offset);
error_seven +=
__shfl_down_sync(0xffffffffU, error_seven, offset);
}
float rounded_scale = rounded_scale_six;
if (lane == 0) {
uint8_t selected_scale_raw = scale_raw_six;
if (four_over_six && error_four < error_six) {
selected_scale_raw = scale_raw_four;
rounded_scale = rounded_scale_four;
}
if (mse_five_six_seven && error_five < error_six) {
selected_scale_raw = scale_raw_five;
rounded_scale = rounded_scale_five;
error_six = error_five;
}
if (mse_five_six_seven && error_seven < error_six) {
selected_scale_raw = scale_raw_seven;
rounded_scale = rounded_scale_seven;
}
destination_scales[device_scale_offset(
outer, inner_scale, scale_inner_dim)] =
selected_scale_raw;
}
rounded_scale = __shfl_sync(0xffffffffU, rounded_scale, 0);
if (lane < kFp4BlockElements / 2) {
const float inverse_scale =
rounded_scale == 0.0f ? 0.0f : 1.0f / rounded_scale;
destination_fp4[destination_source_index / 2] =
__nv_cvt_float2_to_fp4x2(
make_float2(value0 * inverse_scale,
value1 * inverse_scale),
__NV_E2M1, cudaRoundNearest);
}
}
__global__ void add_bias_bf16(
__nv_bfloat16* output, const __nv_bfloat16* bias,
size_t element_count, int n) {
const size_t index =
static_cast<size_t>(blockIdx.x) * blockDim.x + threadIdx.x;
if (index < element_count) {
const float value = __bfloat162float(output[index]);
const float bias_value = __bfloat162float(bias[index % n]);
output[index] = __float2bfloat16(value + bias_value);
}
}
size_t reduction_block_count(size_t element_count) {
return round_up_divide(
element_count,
static_cast<size_t>(kReduceThreads * kReduceItemsPerThread));
}
size_t reduction_scratch_elements(size_t element_count) {
size_t max_blocks = 1;
while (element_count > 1) {
const size_t blocks = reduction_block_count(element_count);
max_blocks = std::max(max_blocks, blocks);
element_count = blocks;
}
return max_blocks;
}
void enqueue_activation_amax_reduce(
const __nv_bfloat16* source, size_t element_count,
float* scratch_a, float* scratch_b, float* destination_amax,
int max_grid_x, cudaStream_t stream) {
const float* current_source = nullptr;
float* current_destination = scratch_a;
size_t current_count = element_count;
bool first_stage = true;
while (true) {
const size_t blocks = reduction_block_count(current_count);
if (blocks == 0 || blocks > static_cast<size_t>(max_grid_x)) {
fail("activation amax reduction exceeds the GPU grid limit");
}
if (first_stage) {
reduce_abs_max_bf16<<<
static_cast<unsigned int>(blocks), kReduceThreads, 0,
stream>>>(source, current_destination, current_count);
} else {
reduce_max_float<<<
static_cast<unsigned int>(blocks), kReduceThreads, 0,
stream>>>(current_source, current_destination, current_count);
}
CUDA_CHECK(cudaPeekAtLastError());
if (blocks == 1) {
if (current_destination != destination_amax) {
CUDA_CHECK(cudaMemcpyAsync(
destination_amax, current_destination, sizeof(float),
cudaMemcpyDeviceToDevice, stream));
}
return;
}
current_count = blocks;
current_source = current_destination;
current_destination =
current_destination == scratch_a ? scratch_b : scratch_a;
first_stage = false;
}
}
struct DeviceAllocation {
void* pointer = nullptr;
size_t bytes = 0;
~DeviceAllocation() {
if (pointer != nullptr) {
cudaFree(pointer);
}
}
DeviceAllocation() = default;
DeviceAllocation(const DeviceAllocation&) = delete;
DeviceAllocation& operator=(const DeviceAllocation&) = delete;
};
struct Context {
int device = -1;
int max_grid_x = 0;
cublasLtHandle_t handle = nullptr;
DeviceAllocation x_fp4;
DeviceAllocation x_scales;
DeviceAllocation reduce_a;
DeviceAllocation reduce_b;
DeviceAllocation activation_amax;
DeviceAllocation activation_scale;
DeviceAllocation fp4_alpha;
DeviceAllocation fp4_beta;
DeviceAllocation workspace;
uintptr_t bound_stream = 0;
bool stream_bound = false;
std::mutex mutex;
~Context() {
if (handle != nullptr) {
cublasLtDestroy(handle);
}
}
};
void allocate_exact(DeviceAllocation* allocation, size_t bytes) {
if (allocation->pointer != nullptr) {
CUDA_CHECK(cudaFree(allocation->pointer));
allocation->pointer = nullptr;
allocation->bytes = 0;
}
if (bytes != 0) {
CUDA_CHECK(cudaMalloc(&allocation->pointer, bytes));
allocation->bytes = bytes;
}
}
void ensure_capacity(
Context* context, DeviceAllocation* allocation, size_t bytes,
cudaStream_t stream) {
if (allocation->bytes >= bytes) {
return;
}
// A growth invalidates scratch pointers. Synchronize the one bound stream
// before freeing; steady-state forwards do not synchronize.
if (context->stream_bound) {
CUDA_CHECK(cudaStreamSynchronize(stream));
}
allocate_exact(allocation, bytes);
}
void set_scale_mode(
cublasLtMatmulDesc_t operation,
cublasLtMatmulDescAttributes_t attribute) {
const int32_t mode =
CUBLASLT_MATMUL_MATRIX_SCALE_VEC16_UE4M3;
CUBLASLT_CHECK(cublasLtMatmulDescSetAttribute(
operation, attribute, &mode, sizeof(mode)));
}
void set_pointer_attribute(
cublasLtMatmulDesc_t operation,
cublasLtMatmulDescAttributes_t attribute, const void* pointer) {
CUBLASLT_CHECK(cublasLtMatmulDescSetAttribute(
operation, attribute, &pointer, sizeof(pointer)));
}
struct Descriptors {
cublasLtMatmulDesc_t operation = nullptr;
cublasLtMatrixLayout_t w = nullptr;
cublasLtMatrixLayout_t x = nullptr;
cublasLtMatrixLayout_t c = nullptr;
cublasLtMatrixLayout_t d = nullptr;
~Descriptors() {
if (d != nullptr) cublasLtMatrixLayoutDestroy(d);
if (c != nullptr) cublasLtMatrixLayoutDestroy(c);
if (x != nullptr) cublasLtMatrixLayoutDestroy(x);
if (w != nullptr) cublasLtMatrixLayoutDestroy(w);
if (operation != nullptr) cublasLtMatmulDescDestroy(operation);
}
};
cublasLtMatmulAlgo_t choose_algo(
Context* context, const Descriptors& descriptors,
size_t* workspace_bytes) {
cublasLtMatmulPreference_t preference = nullptr;
CUBLASLT_CHECK(cublasLtMatmulPreferenceCreate(&preference));
CUBLASLT_CHECK(cublasLtMatmulPreferenceSetAttribute(
preference, CUBLASLT_MATMUL_PREF_MAX_WORKSPACE_BYTES,
&kWorkspaceBytes, sizeof(kWorkspaceBytes)));
cublasLtMatmulHeuristicResult_t candidates[16]{};
int returned = 0;
const cublasStatus_t status = cublasLtMatmulAlgoGetHeuristic(
context->handle, descriptors.operation, descriptors.w,
descriptors.x, descriptors.c, descriptors.d, preference, 16,
candidates, &returned);
cublasLtMatmulPreferenceDestroy(preference);
if (status != CUBLAS_STATUS_SUCCESS || returned == 0) {
fail("cuBLASLt returned no NVFP4 heuristic");
}
for (int index = 0; index < returned; ++index) {
if (candidates[index].state == CUBLAS_STATUS_SUCCESS) {
*workspace_bytes = candidates[index].workspaceSize;
return candidates[index].algo;
}
}
fail("all cuBLASLt NVFP4 heuristics were unsupported");
}
void validate_device_pointer(
const void* pointer, int expected_device, const char* label) {
if (pointer == nullptr) {
fail(std::string(label) + " is null");
}
cudaPointerAttributes attributes{};
CUDA_CHECK(cudaPointerGetAttributes(&attributes, pointer));
if (attributes.type != cudaMemoryTypeDevice ||
attributes.device != expected_device) {
fail(std::string(label) + " is not a CUDA allocation on the context device");
}
if ((reinterpret_cast<uintptr_t>(pointer) & 0x0fU) != 0) {
fail(std::string(label) + " is not at least 16-byte aligned");
}
}
void forward_impl(
Context* context, const void* input_bf16,
const void* packed_weight, size_t packed_weight_bytes,
const void* packed_weight_scales,
size_t packed_weight_scale_bytes,
const void* weight_tensor_scale_f32, const void* bias_bf16,
void* output_bf16, int logical_m, int k, int n,
uintptr_t stream_value) {
if (logical_m <= 0 || k <= 0 || n <= 0) {
fail("M, K, and N must be positive");
}
const size_t expected_weight_bytes =
packed_weight_bytes_checked(n, k);
const size_t expected_scale_bytes = make_scale_layout(k, n).bytes;
if (packed_weight_bytes != expected_weight_bytes ||
packed_weight_scale_bytes != expected_scale_bytes) {
fail("packed weight or scale buffer has the wrong byte size");
}
CUDA_CHECK(cudaSetDevice(context->device));
cudaStream_t stream = reinterpret_cast<cudaStream_t>(stream_value);
if (!context->stream_bound) {
context->bound_stream = stream_value;
context->stream_bound = true;
} else if (context->bound_stream != stream_value) {
fail("resident NVFP4 context is bound to a different CUDA stream");
}
cudaStreamCaptureStatus capture_status = cudaStreamCaptureStatusNone;
CUDA_CHECK(cudaStreamIsCapturing(stream, &capture_status));
if (capture_status != cudaStreamCaptureStatusNone) {
fail("resident ctypes prototype does not support CUDA graph capture");
}
validate_device_pointer(input_bf16, context->device, "input");
validate_device_pointer(packed_weight, context->device, "packed weight");
validate_device_pointer(
packed_weight_scales, context->device, "weight scales");
validate_device_pointer(
weight_tensor_scale_f32, context->device, "weight tensor scale");
validate_device_pointer(output_bf16, context->device, "output");
if (bias_bf16 != nullptr) {
validate_device_pointer(bias_bf16, context->device, "bias");
}
const int padded_m = round_up(logical_m, 8);
const size_t input_elements = checked_multiply(
static_cast<size_t>(logical_m), static_cast<size_t>(k), "input");
const size_t padded_input_elements = checked_multiply(
static_cast<size_t>(padded_m), static_cast<size_t>(k),
"padded input");
const size_t output_elements = checked_multiply(
static_cast<size_t>(padded_m), static_cast<size_t>(n), "output");
const ScaleLayout x_scale_layout = make_scale_layout(k, padded_m);
const size_t reduce_elements =
reduction_scratch_elements(input_elements);
ensure_capacity(
context, &context->x_fp4, padded_input_elements / 2, stream);
ensure_capacity(
context, &context->x_scales, x_scale_layout.bytes, stream);
ensure_capacity(
context, &context->reduce_a,
checked_multiply(reduce_elements, sizeof(float), "reduction"),
stream);
ensure_capacity(
context, &context->reduce_b,
checked_multiply(reduce_elements, sizeof(float), "reduction"),
stream);
// Clear the complete tiled scale allocation, including padding that the
// logical quantizer does not address.
CUDA_CHECK(cudaMemsetAsync(
context->x_scales.pointer, 0, x_scale_layout.bytes, stream));
enqueue_activation_amax_reduce(
static_cast<const __nv_bfloat16*>(input_bf16), input_elements,
static_cast<float*>(context->reduce_a.pointer),
static_cast<float*>(context->reduce_b.pointer),
static_cast<float*>(context->activation_amax.pointer),
context->max_grid_x, stream);
finalize_activation_scale<<<1, 1, 0, stream>>>(
static_cast<const float*>(context->activation_amax.pointer),
static_cast<const float*>(weight_tensor_scale_f32),
static_cast<float*>(context->activation_scale.pointer),
static_cast<float*>(context->fp4_alpha.pointer),
activation_scale_multiplier_for_shape(k, n));
CUDA_CHECK(cudaPeekAtLastError());
const uint64_t padded_blocks =
static_cast<uint64_t>(padded_m) *
static_cast<uint64_t>(k / kFp4BlockElements);
const uint64_t cuda_blocks =
(padded_blocks + kWarpsPerQuantBlock - 1) /
kWarpsPerQuantBlock;
if (cuda_blocks == 0 ||
cuda_blocks > static_cast<uint64_t>(context->max_grid_x)) {
fail("activation quantizer exceeds the GPU grid limit");
}
dynamic_quantize_activation<<<
static_cast<unsigned int>(cuda_blocks), kQuantThreads, 0,
stream>>>(
static_cast<const __nv_bfloat16*>(input_bf16),
static_cast<uint8_t*>(context->x_fp4.pointer),
static_cast<uint8_t*>(context->x_scales.pointer),
static_cast<const float*>(context->activation_scale.pointer),
k, logical_m, x_scale_layout.inner_dim, padded_blocks,
use_four_over_six_activation_search(),
use_mse_five_six_seven_activation_search());
CUDA_CHECK(cudaPeekAtLastError());
Descriptors descriptors;
CUBLASLT_CHECK(cublasLtMatmulDescCreate(
&descriptors.operation, CUBLAS_COMPUTE_32F, CUDA_R_32F));
const cublasOperation_t transpose_a = CUBLAS_OP_T;
const cublasOperation_t transpose_b = CUBLAS_OP_N;
CUBLASLT_CHECK(cublasLtMatmulDescSetAttribute(
descriptors.operation, CUBLASLT_MATMUL_DESC_TRANSA,
&transpose_a, sizeof(transpose_a)));
CUBLASLT_CHECK(cublasLtMatmulDescSetAttribute(
descriptors.operation, CUBLASLT_MATMUL_DESC_TRANSB,
&transpose_b, sizeof(transpose_b)));
const cublasLtPointerMode_t pointer_mode =
CUBLASLT_POINTER_MODE_DEVICE;
CUBLASLT_CHECK(cublasLtMatmulDescSetAttribute(
descriptors.operation, CUBLASLT_MATMUL_DESC_POINTER_MODE,
&pointer_mode, sizeof(pointer_mode)));
set_scale_mode(
descriptors.operation, CUBLASLT_MATMUL_DESC_A_SCALE_MODE);
set_scale_mode(
descriptors.operation, CUBLASLT_MATMUL_DESC_B_SCALE_MODE);
// Refresh pointer attributes for every call. Module buffers may differ
// between adjacent linears even though the shape is identical.
set_pointer_attribute(
descriptors.operation, CUBLASLT_MATMUL_DESC_A_SCALE_POINTER,
packed_weight_scales);
set_pointer_attribute(
descriptors.operation, CUBLASLT_MATMUL_DESC_B_SCALE_POINTER,
context->x_scales.pointer);
CUBLASLT_CHECK(cublasLtMatrixLayoutCreate(
&descriptors.w, CUDA_R_4F_E2M1, k, n, k));
CUBLASLT_CHECK(cublasLtMatrixLayoutCreate(
&descriptors.x, CUDA_R_4F_E2M1, k, padded_m, k));
CUBLASLT_CHECK(cublasLtMatrixLayoutCreate(
&descriptors.c, CUDA_R_16BF, n, padded_m, n));
CUBLASLT_CHECK(cublasLtMatrixLayoutCreate(
&descriptors.d, CUDA_R_16BF, n, padded_m, n));
size_t selected_workspace_bytes = 0;
const cublasLtMatmulAlgo_t algorithm =
choose_algo(context, descriptors, &selected_workspace_bytes);
if (selected_workspace_bytes > context->workspace.bytes) {
fail("selected cuBLASLt algorithm exceeds the context workspace");
}
CUBLASLT_CHECK(cublasLtMatmul(
context->handle, descriptors.operation,
context->fp4_alpha.pointer,
packed_weight, descriptors.w,
context->x_fp4.pointer, descriptors.x,
context->fp4_beta.pointer,
output_bf16, descriptors.c,
output_bf16, descriptors.d,
&algorithm, context->workspace.pointer,
selected_workspace_bytes, stream));
if (bias_bf16 != nullptr) {
const size_t blocks =
round_up_divide(output_elements,
static_cast<size_t>(kBiasThreads));
if (blocks > static_cast<size_t>(context->max_grid_x)) {
fail("bias kernel exceeds the GPU grid limit");
}
add_bias_bf16<<<
static_cast<unsigned int>(blocks), kBiasThreads, 0, stream>>>(
static_cast<__nv_bfloat16*>(output_bf16),
static_cast<const __nv_bfloat16*>(bias_bf16),
output_elements, n);
CUDA_CHECK(cudaPeekAtLastError());
}
}
template <typename Function>
int guarded(Function&& function) {
try {
g_last_error.clear();
function();
return 0;
} catch (const std::exception& error) {
g_last_error = error.what();
return 1;
} catch (...) {
g_last_error = "unknown native NVFP4 error";
return 2;
}
}
} // namespace
extern "C" int mage_nvfp4_abi_version(void) {
return kAbiVersion;
}
extern "C" const char* mage_nvfp4_last_error(void) {
return g_last_error.c_str();
}
extern "C" size_t mage_nvfp4_packed_weight_bytes(int n, int k) {
try {
g_last_error.clear();
return packed_weight_bytes_checked(n, k);
} catch (const std::exception& error) {
g_last_error = error.what();
return 0;
}
}
extern "C" size_t mage_nvfp4_weight_scale_bytes(int n, int k) {
try {
g_last_error.clear();
packed_weight_bytes_checked(n, k);
return make_scale_layout(k, n).bytes;
} catch (const std::exception& error) {
g_last_error = error.what();
return 0;
}
}
extern "C" int mage_nvfp4_pack_weight_bf16(
const void* weight_bf16, int n, int k,
void* packed_weight, size_t packed_weight_capacity,
void* packed_scales, size_t packed_scale_capacity,
float* tensor_scale) {
return guarded([&]() {
if (weight_bf16 == nullptr || packed_weight == nullptr ||
packed_scales == nullptr || tensor_scale == nullptr) {
fail("weight packer received a null pointer");
}
const size_t required_weight =
packed_weight_bytes_checked(n, k);
const ScaleLayout scale_layout = make_scale_layout(k, n);
if (packed_weight_capacity != required_weight ||
packed_scale_capacity != scale_layout.bytes) {
fail("weight packer received an incorrectly sized destination");
}
const auto* source =
static_cast<const __nv_bfloat16*>(weight_bf16);
auto* destination = static_cast<uint8_t*>(packed_weight);
auto* scales = static_cast<uint8_t*>(packed_scales);
std::memset(destination, 0, required_weight);
std::memset(scales, 0, scale_layout.bytes);
const size_t elements =
checked_multiply(static_cast<size_t>(n),
static_cast<size_t>(k), "weight");
float global_amax = 0.0f;
for (size_t index = 0; index < elements; ++index) {
global_amax = std::max(
global_amax,
std::abs(__bfloat162float(source[index])));
}
*tensor_scale =
global_amax == 0.0f
? 1.0f
: global_amax / kTensorScaleDenominator;
const float inverse_tensor_scale = 1.0f / *tensor_scale;
// nn.Linear weight [N,K] is physical column-major KxN.
for (int column = 0; column < n; ++column) {
for (int block = 0; block < k / kFp4BlockElements; ++block) {
const int first_row = block * kFp4BlockElements;
float block_amax = 0.0f;
for (int lane = 0; lane < kFp4BlockElements; ++lane) {
const size_t index =
static_cast<size_t>(first_row + lane) +
static_cast<size_t>(column) * k;
block_amax = std::max(
block_amax,
std::abs(__bfloat162float(source[index]) *
inverse_tensor_scale));
}
const uint8_t scale_raw_six = __nv_cvt_float_to_fp8(
block_amax / kFp4E2M1Max,
__NV_SATFINITE, __NV_E4M3);
uint8_t scale_raw = scale_raw_six;
float rounded_scale =
host_ue4m3_to_float(scale_raw_six);
if (use_four_over_six_weight_search()) {
const uint8_t scale_raw_four = __nv_cvt_float_to_fp8(
block_amax / 4.0f,
__NV_SATFINITE, __NV_E4M3);
const float rounded_scale_four =
host_ue4m3_to_float(scale_raw_four);
float error_six = 0.0f;
float error_four = 0.0f;
for (int lane = 0; lane < kFp4BlockElements; ++lane) {
const size_t index =
static_cast<size_t>(first_row + lane) +
static_cast<size_t>(column) * k;
const float value =
__bfloat162float(source[index]) *
inverse_tensor_scale;
error_six += host_e2m1_reconstruction_error(
value, rounded_scale);
error_four += host_e2m1_reconstruction_error(
value, rounded_scale_four);
}
if (error_four < error_six) {
scale_raw = scale_raw_four;
rounded_scale = rounded_scale_four;
}
}
scales[host_scale_offset(
column, block, scale_layout.inner_dim)] = scale_raw;
const float inverse_scale =
rounded_scale == 0.0f ? 0.0f : 1.0f / rounded_scale;
for (int pair = 0;
pair < kFp4BlockElements / 2; ++pair) {
const int row0 = first_row + pair * 2;
const size_t source_index =
static_cast<size_t>(row0) +
static_cast<size_t>(column) * k;
const float value0 =
__bfloat162float(source[source_index]) *
inverse_tensor_scale;
const float value1 =
__bfloat162float(source[source_index + 1]) *
inverse_tensor_scale;
destination[source_index / 2] =
__nv_cvt_float2_to_fp4x2(
make_float2(value0 * inverse_scale,
value1 * inverse_scale),
__NV_E2M1, cudaRoundNearest);
}
}
}
});
}
extern "C" int mage_nvfp4_create_context(
int cuda_device, void** context) {
return guarded([&]() {
if (context == nullptr) {
fail("context output pointer is null");
}
*context = nullptr;
int device_count = 0;
CUDA_CHECK(cudaGetDeviceCount(&device_count));
if (cuda_device < 0 || cuda_device >= device_count) {
fail("invalid CUDA device index");
}
CUDA_CHECK(cudaSetDevice(cuda_device));
cudaDeviceProp properties{};
CUDA_CHECK(cudaGetDeviceProperties(&properties, cuda_device));
if (properties.major != 12 || properties.minor != 0) {
fail("resident NVFP4 prototype requires sm_120");
}
Context* created = new Context();
try {
created->device = cuda_device;
created->max_grid_x = properties.maxGridSize[0];
CUBLASLT_CHECK(cublasLtCreate(&created->handle));
allocate_exact(&created->activation_amax, sizeof(float));
allocate_exact(&created->activation_scale, sizeof(float));
allocate_exact(&created->fp4_alpha, sizeof(float));
allocate_exact(&created->fp4_beta, sizeof(float));
allocate_exact(&created->workspace, kWorkspaceBytes);
const float zero = 0.0f;
CUDA_CHECK(cudaMemcpy(
created->fp4_beta.pointer, &zero, sizeof(zero),
cudaMemcpyHostToDevice));
*context = created;
} catch (...) {
delete created;
throw;
}
});
}
extern "C" int mage_nvfp4_destroy_context(void* context) {
return guarded([&]() {
if (context == nullptr) {
return;
}
auto* typed = static_cast<Context*>(context);
{
std::lock_guard<std::mutex> lock(typed->mutex);
CUDA_CHECK(cudaSetDevice(typed->device));
if (typed->stream_bound) {
CUDA_CHECK(cudaStreamSynchronize(
reinterpret_cast<cudaStream_t>(typed->bound_stream)));
}
}
delete typed;
});
}
extern "C" size_t mage_nvfp4_context_reserved_bytes(
const void* context) {
if (context == nullptr) {
return 0;
}
const auto* typed = static_cast<const Context*>(context);
return typed->x_fp4.bytes + typed->x_scales.bytes +
typed->reduce_a.bytes + typed->reduce_b.bytes +
typed->activation_amax.bytes +
typed->activation_scale.bytes +
typed->fp4_alpha.bytes + typed->fp4_beta.bytes +
typed->workspace.bytes;
}
extern "C" int mage_nvfp4_linear_forward(
void* context, const void* input_bf16,
const void* packed_weight, size_t packed_weight_bytes,
const void* packed_weight_scales,
size_t packed_weight_scale_bytes,
const void* weight_tensor_scale_f32,
const void* bias_bf16, void* output_bf16,
int logical_m, int k, int n, uintptr_t stream) {
return guarded([&]() {
if (context == nullptr) {
fail("context is null");
}
auto* typed = static_cast<Context*>(context);
std::lock_guard<std::mutex> lock(typed->mutex);
forward_impl(
typed, input_bf16, packed_weight, packed_weight_bytes,
packed_weight_scales, packed_weight_scale_bytes,
weight_tensor_scale_f32, bias_bf16, output_bf16,
logical_m, k, n, stream);
});
}
|