MPT Training Benchmarks

April 22, 2024 ยท View on GitHub

Benchmark measurements for MPT models trained on MosaicML platform, including throughput, MFU, and HFU. Each model is based on optimized configurations of various sizes in the yamls folder, ranging from a 125m to 70B parameter models.

To reproduce table results, first run:

./sweep.sh

Then, after the runs are completed:

python collect_results.py --save-path results

will use our Python API to collect and calculate the benchmark results, and then save as both a CSV file results.csv, and a markdown table results.md.

python submit_benchmarks.py --cluster [your_mosaicml_cluster] ARGS --RUN

can be used to sweep a larger set of configurations. For example usage of submit_benchmarks.py see sweep.sh which lists all benchmarks in the tables.

Note The collect_results.py will by default find all runs with tput in the run name. To customize this project tag, use --project in both the submission and collection scripts.

MFU and HFU

Model FLOPs Utilization (MFU) and Hardware FLOPS Utilization (HFU) are estimates, based on the measured throughput and the known FLOPs of the computation, of what percentage of the hardware's FLOPs are being used during training.

MFU calculates the utilization from the floating point operations required for a single forward/backwards pass of the model, and does not account for the additional compute required for other implementation details such as activation checkpointing. Thus, MFU is independent of implementation and hardware.

HFU attempts to capture the actual floating point operations incurred during the forward/backwards pass on the hardware. While it is a more accurate measurement of hardware utilization, it is less general and is difficult to compare across various hardware and implementation details.

For more information, see Korthikanti et al, 2022. All FLOP calculations exclude the operations required for normalization, activation, and residuals.

MFU

Per token, each parameter is used for a MAC (2 FLOPS) per network operation. Neural Network training has 3 network operations: forward pass, backward pass, and computation of parameter gradient.

The attention mechanism forward pass FLOPS are: attn_flops_per_seq = n_layers * 2 * 2 * (d_model * (seq_len**2))

flops_per_token = 2 * n_params
flops_per_seq = flops_per_token * seq_len
mfu* = 3 * flops_per_seq * seq_per_sec / (gpu_num * GPU_AVAILABLE_FLOPS)

attn_flops_per_seq = n_layers * 2 * 2 * (d_model * (seq_len**2))
mfu = (3 * flops_per_seq + 3 * attn_flops_per_seq) * seq_per_sec / (gpu_num * GPU_AVAILABLE_FLOPS)

HFU

The HFU numbers shown below account for the fact that the networks use checkpointing and recomputes activations. This effectively requires an extra forward pass through the network.

hfu* = 4 * flops_per_seq * seq_per_sec / (gpu_num * GPU_AVAILABLE_FLOPS)
hfu = (4 * flops_per_seq + 4 * attn_flops_per_seq) * seq_per_sec / (gpu_num * GPU_AVAILABLE_FLOPS)

Note that these are approximations. Actual HFU would be higher since it includes the floating point operations for normalization, activation, and residual layers, as well as all recomputation. For example, our models use Flash Attention, which requires including an extra recompute factor for its recomputation in the forward pass. Therefore, the attention multiplier would be 5 instead of 4.

Results

Below we include several configurations across different hardware platforms, sequence lengths and batch sizes. It is easy to benchmark configurations for your own use case. For example, using the Mosaic platform, to test MPT {13B, 30B} using fp16 with a batch size of 2M tokens and seq len {2k, 4k, 8k, 16k} run:

python submit_benchmarks.py -m 13b.yaml 30b.yaml -t fp16 -b 21 21 -s 11 14 --RUN

This will run 8 configs for 12 steps to get throughput numbers. python collect_results.py can then be used to parse all output training logs and create the tables below.

Our microbatching engine enables microbatch sizes that do not divide global batch size while being mathematically faithful to the global batch size. For example, a total batch size of 48, and a micro batch of 11, means we will accumulate gradients across microbatches of 11, 11, 11, 11, 4.

H100 80GB BF16 (Large Scale, >= 128 GPUs)

ModelSeqLen (T)# GPUsGPUMFUHFUModel TFLOPMicroBatchSizeGradAccumGlobalBatchSizeThroughput (S/s)Throughput (T/s)Throughput (T/s/GPU)GlobalBatchSize (T)PrecisionMP ModeSharding StrategyActivation CheckpointingActivation CPUOffloadNumParams
70b2048512h100_80gb41.2555.040881409625151563610078388608amp_bf16DEFAULTFULL_SHARDTrueFalse64862437376
70b2048256h100_80gb42.4256.5641981204812926514910354194304amp_bf16DEFAULTFULL_SHARDTrueFalse64862437376
70b2048128h100_80gb43.3657.814288110246613549010582097152amp_bf16DEFAULTFULL_SHARDTrueFalse64862437376
30b2048512h100_80gb40.2753.69398814096528108336621158388608amp_bf16DEFAULTFULL_SHARDTrueFalse29975214080
30b2048256h100_80gb40.8954.5240481204826855002221484194304amp_bf16DEFAULTFULL_SHARDTrueFalse29975214080
30b2048128h100_80gb41.8555.841481102413728149121992097152amp_bf16DEFAULTFULL_SHARDTrueFalse29975214080
13b2048512h100_80gb41.1254.83406161819212382535811495216777216amp_bf16DEFAULTFULL_SHARDTrueFalse12853954560
13b2048256h100_80gb41.4255.234091614096623127721449898388608amp_bf16DEFAULTFULL_SHARDTrueFalse12853954560
13b2048128h100_80gb42.1856.24417161204831765026450804194304amp_bf16DEFAULTFULL_SHARDTrueFalse12853954560
7b2048512h100_80gb42.242.24176130722417495147996706291456amp_bf16DEFAULTFULL_SHARDFalseFalse6658859008
7b2048256h100_80gb44.1544.1543661153612642590548101193145728amp_bf16DEFAULTFULL_SHARDFalseFalse6658859008
7b2048128h100_80gb45.7145.71452617686541340830104751572864amp_bf16DEFAULTFULL_SHARDFalseFalse6658859008
3b2048512h100_80gb39.2439.24388814096541611092218216648388608amp_bf16DEFAULTSHARD_GRAD_OPFalseFalse2651837440
3b2048256h100_80gb41.2541.2540881204828465829686227724194304amp_bf16DEFAULTSHARD_GRAD_OPFalseFalse2651837440
3b2048128h100_80gb42.4342.4341981102414632998098234222097152amp_bf16DEFAULTSHARD_GRAD_OPFalseFalse2651837440
1b2048512h100_80gb36.6536.6536212161449959203969053983712582912amp_bf16DEFAULTSHARD_GRAD_OPFalseFalse1315950592
1b2048256h100_80gb39.1539.153871213072531910894207425556291456amp_bf16DEFAULTSHARD_GRAD_OPFalseFalse1315950592
1b2048128h100_80gb40.640.6401121153627575647854441233145728amp_bf16DEFAULTSHARD_GRAD_OPFalseFalse1315950592

H100 80GB BF16

ModelSeqLen (T)# GPUsGPUMFUHFUModel TFLOPMicroBatchSizeGradAccumGlobalBatchSizeThroughput (S/s)Throughput (T/s)Throughput (T/s/GPU)GlobalBatchSize (T)PrecisionMP ModeSharding StrategyActivation CheckpointingActivation CPUOffloadNumParams
70b204864h100_80gb42.5756.76421842048326652310394194304amp_bf16DEFAULTFULL_SHARDTrueFalse64862437376
70b204832h100_80gb36.1548.2357216102413282428822097152amp_bf16DEFAULTFULL_SHARDTrueFalse64862437376
30b81928h100_80gb29.9239.929612116811107213841376256amp_bf16DEFAULTFULL_SHARDTrueFalse30019254272
30b40968h100_80gb35.8647.813541211683144191802688128amp_bf16DEFAULTFULL_SHARDTrueFalse29989894144
30b204832h100_80gb43.9258.574341431344367386023082752512amp_bf16DEFAULTFULL_SHARDTrueFalse29975214080
30b204816h100_80gb43.0757.4242610348017362092263983040amp_bf16DEFAULTFULL_SHARDTrueFalse29975214080
30b20488h100_80gb38.1150.8237732150471602220021032192amp_bf16DEFAULTFULL_SHARDTrueFalse29975214080
30b10248h100_80gb38.7651.683836211008161667220841032192amp_bf16DEFAULTFULL_SHARDTrueFalse29967874048
13b327688h100_80gb31.6842.2431313240158121976786432amp_bf16DEFAULTFULL_SHARDTrueFalse13011240960
13b163848h100_80gb35.5547.4351337212388129851179648amp_bf16DEFAULTFULL_SHARDTrueFalse12927354880
13b40968h100_80gb41.655.474111032409377404717983040amp_bf16DEFAULTFULL_SHARDTrueFalse12864440320
13b204864h100_80gb39.8639.86394211281503072094800262144amp_bf16DEFAULTFULL_SHARDFalseFalse12853954560
13b204832h100_80gb39.9539.953952164751539604811131072amp_bf16DEFAULTFULL_SHARDFalseFalse12853954560
13b204816h100_80gb39.5839.5839121323776280476765536amp_bf16DEFAULTFULL_SHARDFalseFalse12853954560
13b20488h100_80gb39.7939.7939321161838336479232768amp_bf16DEFAULTFULL_SHARDFalseFalse12853954560
13b10248h100_80gb44.2759.0343840396042440195502983040amp_bf16DEFAULTFULL_SHARDTrueFalse12848711680
7b655368h100_80gb28.5938.13282121601565419561048576amp_bf16DEFAULTFULL_SHARDTrueFalse6918905856
7b327688h100_80gb30.9441.25306223202655033181048576amp_bf16DEFAULTFULL_SHARDTrueFalse6784688128
7b81928h100_80gb37.1449.523678212865548169351048576amp_bf16DEFAULTFULL_SHARDTrueFalse6684024832
7b40968h100_80gb40.4253.9399162256166889386111048576amp_bf16DEFAULTFULL_SHARDTrueFalse6667247616
7b20488h100_80gb46.4446.44459614841851441064398304amp_bf16DEFAULTFULL_SHARDFalseFalse6658859008
7b10248h100_80gb42.8357.1142364210247981628102031048576amp_bf16DEFAULTFULL_SHARDTrueFalse6654664704
3b655368h100_80gb26.8135.74265121602609932621048576amp_bf16DEFAULTFULL_SHARDTrueFalse2814366720
3b327688h100_80gb28.8438.462853614414698458734718592amp_bf16DEFAULTFULL_SHARDTrueFalse2730480640
3b163848h100_80gb36.3436.34359164858922311152786432amp_bf16DEFAULTFULL_SHARDFalseFalse2688537600
3b81928h100_80gb40.3140.313983614416132626165781179648amp_bf16DEFAULTFULL_SHARDFalseFalse2667566080
3b40968h100_80gb42.3142.31418562404016771220964983040amp_bf16DEFAULTFULL_SHARDFalseFalse2657080320
3b204864h100_80gb40.840.84036311527031441663225252359296amp_bf16DEFAULTFULL_SHARDFalseFalse2651837440
3b204832h100_80gb41.741.741263576359736701230211179648amp_bf16DEFAULTFULL_SHARDFalseFalse2651837440
3b204816h100_80gb43.7343.7343210348018838628524142983040amp_bf16DEFAULTFULL_SHARDFalseFalse2651837440
3b10248h100_80gb46.246.245720696021121636927046983040amp_bf16DEFAULTFULL_SHARDFalseFalse2649216000
3b5128h100_80gb46.3246.32458406192043622372127965983040amp_bf16DEFAULTFULL_SHARDFalseFalse2647905280
1b655368h100_80gb26.3435.12260121604405055061048576amp_bf16DEFAULTFULL_SHARDTrueFalse1445974016
1b327688h100_80gb33.5433.543311432296203120251048576amp_bf16DEFAULTFULL_SHARDFalseFalse1378865152
1b163848h100_80gb35.2235.2234824649157194196491048576amp_bf16DEFAULTFULL_SHARDFalseFalse1345310720
1b81928h100_80gb37.7337.7337334962823325629157786432amp_bf16DEFAULTFULL_SHARDFalseFalse1328533504
1b40968h100_80gb40.2640.26398742247530828238535917504amp_bf16DEFAULTFULL_SHARDFalseFalse1320144896
1b204864h100_80gb40.8540.85404201128013872841754444022621440amp_bf16DEFAULTFULL_SHARDFalseFalse1315950592
1b204832h100_80gb41.5241.524102016407051444183451301310720amp_bf16DEFAULTFULL_SHARDFalseFalse1315950592
1b204816h100_80gb42.3642.3641920132035973659646037655360amp_bf16DEFAULTFULL_SHARDFalseFalse1315950592
1b20488h100_80gb41.8241.8241314111217736364545455229376amp_bf16DEFAULTFULL_SHARDFalseFalse1315950592
1b10248h100_80gb41.9541.9541518457638239128748910589824amp_bf16DEFAULTFULL_SHARDFalseFalse1313853440
1b5128h100_80gb43.2143.21427564179281641820152275917504amp_bf16DEFAULTFULL_SHARDFalseFalse1312804864
760m327688h100_80gb31.8431.843151216313033316291524288amp_bf16DEFAULTFULL_SHARDFalseFalse807656448
760m163848h100_80gb33.5733.5733232481322252127815786432amp_bf16DEFAULTFULL_SHARDFalseFalse782490624
760m81928h100_80gb34.8434.8434462964033460241825786432amp_bf16DEFAULTFULL_SHARDFalseFalse769907712
760m40968h100_80gb35.8335.8335412219210844367455459786432amp_bf16DEFAULTFULL_SHARDFalseFalse763616256
760m204832h100_80gb37.5737.5737124176810622175091679711572864amp_bf16DEFAULTFULL_SHARDFalseFalse760470528
760m204816h100_80gb37.8937.89374241384535109681968551786432amp_bf16DEFAULTFULL_SHARDFalseFalse760470528
760m20488h100_80gb34.934.934524238424650517763147786432amp_bf16DEFAULTFULL_SHARDFalseFalse760470528
760m10248h100_80gb39.7639.7639348276861362864878581786432amp_bf16DEFAULTFULL_SHARDFalseFalse758897664
760m5128h100_80gb40.4240.423999621536130866999883749786432amp_bf16DEFAULTFULL_SHARDFalseFalse758111232

H100 80GB FP8

ModelSeqLen (T)# GPUsGPUMFUHFUModel TFLOPMicroBatchSizeGradAccumGlobalBatchSizeThroughput (S/s)Throughput (T/s)Throughput (T/s/GPU)GlobalBatchSize (T)PrecisionMP ModeSharding StrategyActivation CheckpointingActivation CPUOffloadNumParams
3b327688h100_80gb14.3819.182843614414685358564718592amp_fp8DEFAULTFULL_SHARDTrueFalse2730480640
3b81928h100_80gb23.2823.284603614418153174191461179648amp_fp8DEFAULTFULL_SHARDFalseFalse2667566080
3b20488h100_80gb27.727.754810648011924469230586983040amp_fp8DEFAULTFULL_SHARDFalseFalse2651837440
3b5128h100_80gb30.2530.25598406192057029221736527983040amp_fp8DEFAULTFULL_SHARDFalseFalse2647905280
1b327688h100_80gb17.5517.5534714323100643125801048576amp_fp8DEFAULTFULL_SHARDFalseFalse1378865152
1b81928h100_80gb20.7120.7140924643125608732010524288amp_fp8DEFAULTFULL_SHARDFalseFalse1328533504
1b5128h100_80gb29.0629.065755641792109856252370315917504amp_fp8DEFAULTFULL_SHARDFalseFalse1312804864

A100 80GB with 1600 Gbps node-node interconnect (RoCE)

ModelSeqLen (T)# GPUsGPUMFUHFUModel TFLOPMicroBatchSizeGradAccumGlobalBatchSizeThroughput (S/s)Throughput (T/s)Throughput (T/s/GPU)GlobalBatchSize (T)PrecisionMP ModeSharding StrategyActivation CheckpointingActivation CPUOffloadNumParams
70b204864a100_80gb53.3371.116684204812262744104194304bf16PUREFULL_SHARDTrueFalse64862437376
70b204832a100_80gb48.5664.7515121610245119623732097152bf16PUREFULL_SHARDTrueFalse64862437376
30b81928a100_80gb39.3852.5122121168045945741376256amp_bf16DEFAULTFULL_SHARDTrueFalse30019254272
30b40968a100_80gb51.3768.4916012116816513814688128amp_bf16DEFAULTFULL_SHARDTrueFalse29989894144
30b20488a100_80gb55.373.74172321504373309161032192amp_bf16DEFAULTFULL_SHARDTrueFalse29975214080
30b10248a100_80gb55.8274.431746211008775719461032192amp_bf16DEFAULTFULL_SHARDTrueFalse29967874048
30b5128a100_80gb56.475.2175122120161577399671032192amp_bf16DEFAULTFULL_SHARDTrueFalse29964204032
13b327688a100_80gb51.6968.921611324081341016786432amp_bf16DEFAULTFULL_SHARDTrueFalse13011240960
13b163848a100_80gb54.0772.1168337201145414311179648amp_bf16DEFAULTFULL_SHARDTrueFalse12927354880
13b81928a100_80gb56.0774.76174531201143621795983040amp_bf16DEFAULTFULL_SHARDTrueFalse12885411840
13b40968a100_80gb57.6276.821791032404164822060983040amp_bf16DEFAULTFULL_SHARDTrueFalse12864440320
13b20488a100_80gb59.5759.571852348818097226298304amp_bf16DEFAULTFULL_SHARDFalseFalse12853954560
13b10248a100_80gb59.4879.318540396018186472330983040amp_bf16DEFAULTFULL_SHARDTrueFalse12848711680
7b655368a100_80gb46.9762.6314612160810810131048576amp_bf16DEFAULTFULL_SHARDTrueFalse6918905856
7b327688a100_80gb49.4665.94154223201338216721048576amp_bf16DEFAULTFULL_SHARDTrueFalse6784688128
7b163848a100_80gb51.9669.28162426411962924531048576amp_bf16DEFAULTFULL_SHARDTrueFalse6717579264
7b81928a100_80gb54.4772.621698212832565532061048576amp_bf16DEFAULTFULL_SHARDTrueFalse6684024832
7b40968a100_80gb54.8473.1217116225672947236841048576amp_bf16DEFAULTFULL_SHARDTrueFalse6667247616
7b20488a100_80gb64.2364.23200629618371304641196608amp_bf16DEFAULTFULL_SHARDFalseFalse6658859008
7b10248a100_80gb58.0177.351806421024343485743571048576amp_bf16DEFAULTFULL_SHARDTrueFalse6654664704
3b655368a100_80gb46.0561.41143121601413717671048576amp_bf16DEFAULTFULL_SHARDTrueFalse2814366720
3b327688a100_80gb47.1862.911473614402423530294718592amp_bf16DEFAULTFULL_SHARDTrueFalse2730480640
3b163848a100_80gb57.1357.1317816482442335529786432amp_bf16DEFAULTFULL_SHARDFalseFalse2688537600
3b81928a100_80gb59.3459.341853614476156776951179648amp_bf16DEFAULTFULL_SHARDFalseFalse2667566080
3b40968a100_80gb60.5360.531885624018756589457983040amp_bf16DEFAULTFULL_SHARDFalseFalse2657080320
3b20488a100_80gb62.1162.11193102160428649110811327680amp_bf16DEFAULTFULL_SHARDFalseFalse2651837440
3b10248a100_80gb62.7362.73195206960909264311580983040amp_bf16DEFAULTFULL_SHARDFalseFalse2649216000
3b5128a100_80gb63.7163.7119840619201899701912127983040amp_bf16DEFAULTFULL_SHARDFalseFalse2647905280
1b655368a100_80gb46.1861.57144121602435330441048576amp_bf16DEFAULTFULL_SHARDTrueFalse1445974016
1b327688a100_80gb55.5255.52173143215020762751048576amp_bf16DEFAULTFULL_SHARDFalseFalse1378865152
1b163848a100_80gb56.656.6176246447965099561048576amp_bf16DEFAULTFULL_SHARDFalseFalse1345310720
1b81928a100_80gb56.6956.6917634961311051613814786432amp_bf16DEFAULTFULL_SHARDFalseFalse1328533504
1b40968a100_80gb59.059.0184742243414245717807917504amp_bf16DEFAULTFULL_SHARDFalseFalse1320144896
1b20488a100_80gb59.8659.861861444488016410920513917504amp_bf16DEFAULTFULL_SHARDFalseFalse1315950592
1b10248a100_80gb60.1560.1518718457617217689822112589824amp_bf16DEFAULTFULL_SHARDFalseFalse1313853440
1b5128a100_80gb60.6860.68189564179236118518623148917504amp_bf16DEFAULTFULL_SHARDFalseFalse1312804864
760m655368a100_80gb45.3460.45141121603315041431048576amp_bf16DEFAULTFULL_SHARDTrueFalse857988096
760m327688a100_80gb54.5754.5717012162704178802524288amp_bf16DEFAULTFULL_SHARDFalseFalse807656448
760m163848a100_80gb54.6454.641703248611419814274786432amp_bf16DEFAULTFULL_SHARDFalseFalse782490624
760m81928a100_80gb55.3155.3117262962016747120933786432amp_bf16DEFAULTFULL_SHARDFalseFalse769907712
760m40968a100_80gb56.0556.051741221925321880827351786432amp_bf16DEFAULTFULL_SHARDFalseFalse763616256
760m20488a100_80gb56.8556.8517724238412625947232434786432amp_bf16DEFAULTFULL_SHARDFalseFalse760470528
760m10248a100_80gb47.7647.7614948276823223812229765786432amp_bf16DEFAULTFULL_SHARDFalseFalse758897664
760m5128a100_80gb45.0745.07140962153646023557129446786432amp_bf16DEFAULTFULL_SHARDFalseFalse758111232
350m655368a100_80gb52.752.7164121606019575241048576amp_bf16DEFAULTFULL_SHARDFalseFalse420997120
350m327688a100_80gb52.4652.4616322323109222136521048576amp_bf16DEFAULTFULL_SHARDFalseFalse387442688
350m163848a100_80gb53.2853.28166426411188478235591048576amp_bf16DEFAULTFULL_SHARDFalseFalse370665472
350m81928a100_80gb53.853.81678212835292559365691048576amp_bf16DEFAULTFULL_SHARDFalseFalse362276864
350m40968a100_80gb53.3153.3116616225696396442495551048576amp_bf16DEFAULTFULL_SHARDFalseFalse358082560
350m20488a100_80gb51.6251.62161322512229470263587821048576amp_bf16DEFAULTFULL_SHARDFalseFalse355985408
350m10248a100_80gb50.5150.511576421024506518504648131048576amp_bf16DEFAULTFULL_SHARDFalseFalse354936832
350m5128a100_80gb50.6150.61157128220481083554643693301048576amp_bf16DEFAULTFULL_SHARDFalseFalse354412544
125m655368a100_80gb54.1354.1316812162162946203681048576amp_bf16DEFAULTFULL_SHARDFalseFalse174070272
125m327688a100_80gb52.7152.7116422328291256364071048576amp_bf16DEFAULTFULL_SHARDFalseFalse148904448
125m163848a100_80gb50.6150.61157426429480322600401048576amp_bf16DEFAULTFULL_SHARDFalseFalse136321536
125m81928a100_80gb48.8548.851528212888723142903921048576amp_bf16DEFAULTFULL_SHARDFalseFalse130030080
125m40968a100_80gb46.0846.081431622562319471721183961048576amp_bf16DEFAULTFULL_SHARDFalseFalse126884352
125m20488a100_80gb44.7944.7913940264055711426411428301310720amp_bf16DEFAULTFULL_SHARDFalseFalse125311488
125m20488a100_80gb44.4544.4513832251255311339011417371048576amp_bf16DEFAULTFULL_SHARDFalseFalse125311488
125m10248a100_80gb43.1543.151346421024122212517511564681048576amp_bf16DEFAULTFULL_SHARDFalseFalse124525056
125m5128a100_80gb42.5642.5613212822048258813254551656811048576amp_bf16DEFAULTFULL_SHARDFalseFalse124131840

A100 40GB with 1600 Gbps node-node interconnect (RoCE)

ModelSeqLen (T)# GPUsGPUMFUHFUModel TFLOPMicroBatchSizeGradAccumGlobalBatchSizeThroughput (S/s)Throughput (T/s)Throughput (T/s/GPU)GlobalBatchSize (T)PrecisionMP ModeSharding StrategyActivation CheckpointingActivation CPUOffloadNumParams
70b2048128a100_40gb48.9165.211524151223481943761048576bf16PUREFULL_SHARDTrueFalse64862437376
70b204864a100_40gb35.8747.8211121128817672276262144bf16PUREFULL_SHARDTrueFalse64862437376
30b2048128a100_40gb52.2569.6616361768541108038651572864bf16PUREFULL_SHARDTrueFalse29975214080
30b204832a100_40gb51.7468.98161411281327431857262144bf16PUREFULL_SHARDTrueFalse29975214080
13b81928a100_40gb43.9558.613711612811125814071048576bf16PUREFULL_SHARDTrueFalse12885411840
13b40968a100_40gb44.8559.813921625631283016031048576bf16PUREFULL_SHARDTrueFalse12864440320
13b2048128a100_40gb51.9369.24162161204812325244419724194304bf16PUREFULL_SHARDTrueFalse12853954560
13b204864a100_40gb52.0469.3916216110246112647919762097152bf16PUREFULL_SHARDTrueFalse12853954560
13b204832a100_40gb52.6270.1616414144831639461998917504bf16PUREFULL_SHARDTrueFalse12853954560
13b204816a100_40gb52.570.016310116015319001993327680bf16PUREFULL_SHARDTrueFalse12853954560
13b20488a100_40gb43.9458.5813741651261334716681048576bf16PUREFULL_SHARDTrueFalse12853954560
13b10248a100_40gb44.0758.761378161024131381717271048576bf16PUREFULL_SHARDTrueFalse12848711680
13b5128a100_40gb44.2859.0413816162048271410817631048576bf16PUREFULL_SHARDTrueFalse12846090240
7b163848a100_40gb47.6563.5314814321179982249524288bf16PUREFULL_SHARDTrueFalse6717579264
7b81928a100_40gb49.0465.3815334962230982887786432bf16PUREFULL_SHARDTrueFalse6684024832
7b40968a100_40gb50.1166.82156641926269303366786432bf16PUREFULL_SHARDTrueFalse6667247616
7b2048128a100_40gb50.1466.85156181230422646374936234718592bf16PUREFULL_SHARDTrueFalse6658859008
7b204864a100_40gb50.7367.64158181115211423461436652359296bf16PUREFULL_SHARDTrueFalse6658859008
7b204832a100_40gb51.5568.731601815765811920237251179648bf16PUREFULL_SHARDTrueFalse6658859008
7b204816a100_40gb50.4467.2615716125628583223645524288bf16PUREFULL_SHARDTrueFalse6658859008
7b20488a100_40gb50.9267.8915812438414294363679786432bf16PUREFULL_SHARDTrueFalse6658859008
7b10248a100_40gb51.3168.4216024476830308333854786432bf16PUREFULL_SHARDTrueFalse6654664704
7b5128a100_40gb50.8567.8158484153660311673895786432bf16PUREFULL_SHARDTrueFalse6652567552
3b327688a100_40gb46.0361.37143143202364029551048576bf16PUREFULL_SHARDTrueFalse2730480640
3b163848a100_40gb46.1461.521432812823572644652097152bf16PUREFULL_SHARDTrueFalse2688537600
3b81928a100_40gb55.1355.1317218646571937149524288bf16PUREFULL_SHARDFalseFalse2667566080
3b40968a100_40gb56.1856.181752812817702238777524288bf16PUREFULL_SHARDFalseFalse2657080320
3b2048128a100_40gb54.854.817061768596122088595381572864bf16PUREFULL_SHARDFalseFalse2651837440
3b204864a100_40gb55.9455.94174613843046231679736786432bf16PUREFULL_SHARDFalseFalse2651837440
3b204832a100_40gb56.9656.96177611921543172619914393216bf16PUREFULL_SHARDFalseFalse2651837440
3b204816a100_40gb56.0256.021745180761560139750163840bf16PUREFULL_SHARDFalseFalse2651837440
3b20488a100_40gb57.8257.8218058320398052010065655360bf16PUREFULL_SHARDFalseFalse2651837440
3b10248a100_40gb58.1458.14181108640838585410731655360bf16PUREFULL_SHARDFalseFalse2649216000
3b5128a100_40gb59.4959.4918520812801769059611324655360bf16PUREFULL_SHARDFalseFalse2647905280
1b327688a100_40gb45.0760.1140143214076250951048576bf16PUREFULL_SHARDTrueFalse1378865152
1b163848a100_40gb55.2355.23172186447772397151048576bf16PUREFULL_SHARDFalseFalse1345310720
1b81928a100_40gb55.2955.291722812813107799134741048576bf16PUREFULL_SHARDFalseFalse1328533504
1b40968a100_40gb55.8555.851744825632134851168561048576bf16PUREFULL_SHARDFalseFalse1320144896
1b2048128a100_40gb54.4154.41169101128011652386897186472621440bf16PUREFULL_SHARDFalseFalse1315950592
1b204864a100_40gb55.4455.441721016405931216104190011310720bf16PUREFULL_SHARDFalseFalse1315950592
1b204832a100_40gb45.3945.3914110132024349778215555655360bf16PUREFULL_SHARDFalseFalse1315950592
1b204816a100_40gb55.6955.691738112814930537219085262144bf16PUREFULL_SHARDFalseFalse1315950592
1b20488a100_40gb56.2356.231758851275154171192711048576bf16PUREFULL_SHARDFalseFalse1315950592
1b10248a100_40gb57.0257.021771681024163167677209591048576bf16PUREFULL_SHARDFalseFalse1313853440
1b5128a100_40gb57.157.11783282048340174256217821048576bf16PUREFULL_SHARDFalseFalse1312804864
760m327688a100_40gb44.5359.37138143215746471831048576bf16PUREFULL_SHARDTrueFalse807656448
760m163848a100_40gb53.2653.261661432611131613914524288bf16PUREFULL_SHARDFalseFalse782490624
760m81928a100_40gb53.1253.1216534961916085320106786432bf16PUREFULL_SHARDFalseFalse769907712
760m40968a100_40gb53.053.0165641925020690925863786432bf16PUREFULL_SHARDFalseFalse763616256
760m2048128a100_40gb50.7350.73158121153618083704382289403145728bf16PUREFULL_SHARDFalseFalse760470528
760m204864a100_40gb51.4451.441601217689171878030293441572864bf16PUREFULL_SHARDFalseFalse760470528
760m204832a100_40gb51.9751.9716212138446394874529648786432bf16PUREFULL_SHARDFalseFalse760470528
760m204816a100_40gb51.951.916112119223147372329607393216bf16PUREFULL_SHARDFalseFalse760470528
760m20488a100_40gb52.8952.8916512438411724138930173786432bf16PUREFULL_SHARDFalseFalse760470528
760m10248a100_40gb53.6353.6316724476826126737633422786432bf16PUREFULL_SHARDFalseFalse758897664
760m5128a100_40gb53.4753.47166484153654527950434938786432bf16PUREFULL_SHARDFalseFalse758111232
350m327688a100_40gb51.5551.5516014323107329134161048576bf16PUREFULL_SHARDFalseFalse387442688
350m163848a100_40gb51.7851.78161246411183175228961048576bf16PUREFULL_SHARDFalseFalse370665472
350m81928a100_40gb51.3951.391604412834279466349331048576bf16PUREFULL_SHARDFalseFalse362276864
350m40968a100_40gb50.3850.381578425691374670468331048576bf16PUREFULL_SHARDFalseFalse358082560
350m2048128a100_40gb45.6145.61142181230432456647647519344718592bf16PUREFULL_SHARDFalseFalse355985408
350m204864a100_40gb46.2746.27144181115216463372118526892359296bf16PUREFULL_SHARDFalseFalse355985408
350m204832a100_40gb47.2647.261471815768401721978538111179648bf16PUREFULL_SHARDFalseFalse355985408
350m204816a100_40gb48.6648.6615118128843288662255413589824bf16PUREFULL_SHARDFalseFalse355985408
350m20488a100_40gb49.1749.17153164512218447963559951048576bf16PUREFULL_SHARDFalseFalse355985408
350m10248a100_40gb48.7348.731523241024488500184625231048576bf16PUREFULL_SHARDFalseFalse354936832
350m5128a100_40gb48.3948.3915064420481035530277662841048576bf16PUREFULL_SHARDFalseFalse354412544
125m327688a100_40gb47.2747.2714714327261208326511048576bf16PUREFULL_SHARDFalseFalse148904448
125m163848a100_40gb46.7746.7714523482744387655484786432bf16PUREFULL_SHARDFalseFalse136321536
125m81928a100_40gb46.9446.94146531208469486886858983040bf16PUREFULL_SHARDFalseFalse130030080
125m40968a100_40gb44.8244.821391333122249212971151621277952bf16PUREFULL_SHARDFalseFalse126884352
125m2048128a100_40gb38.8638.8612126133287746158638371239366815744bf16PUREFULL_SHARDFalseFalse125311488
125m204864a100_40gb39.2739.271222611664391380150101252343407872bf16PUREFULL_SHARDFalseFalse125311488
125m204832a100_40gb39.8639.86124261832198640679221271221703936bf16PUREFULL_SHARDFalseFalse125311488
125m204816a100_40gb40.9340.9312726141610192088560130535851968bf16PUREFULL_SHARDFalseFalse125311488
125m20488a100_40gb42.7542.7513326362453210906781363341277952bf16PUREFULL_SHARDFalseFalse125311488
125m10248a100_40gb40.8940.891275231248115811863141482891277952bf16PUREFULL_SHARDFalseFalse124525056
125m5128a100_40gb40.2640.2612510432496244812538861567351277952bf16PUREFULL_SHARDFalseFalse124131840