cubecl-server 0.11.0-pre.4

Toolkit for implementing a CubeCL runtime: memory pools, streams, drivers and the compilation pipeline.
Documentation
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
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
mod dummy;

use crate::dummy::{DummyDevice, DummyElementwiseAddition, test_client};

use cubecl_common::bytes::Bytes;
use cubecl_common::device::{DeviceId, ServiceId};
use cubecl_environment::stream::StreamId;
use cubecl_ir::{ElemType, UIntKind};
use cubecl_server::client::Client;
use cubecl_server::server::{
    CubeCount, Handle, IoError, KernelArguments, ReduceOperation, ServerError,
};
use cubecl_server::{local_tuner, tune::LocalTuner};
use dummy::*;

#[test_log::test]
fn created_resource_is_the_same_when_read() {
    let client = test_client(&DummyDevice);
    let resource = Vec::from([0, 1, 2]);
    let resource_description = client.create_from_slice(&resource);

    let obtained_resource = client.read_one(resource_description).unwrap().to_vec();

    assert_eq!(resource, obtained_resource)
}

#[test_log::test]
fn empty_allocates_memory() {
    let client = test_client(&DummyDevice);
    let size = 4;
    let resource_description = client.empty(size);
    let empty_resource = client.read_one(resource_description).unwrap();

    assert_eq!(empty_resource.len(), 4);
}

// Dry runs are process-wide, so a test asserting that a launch really ran must
// not overlap one. `parallel` still runs alongside the other parallel tests; it

/// A handle stamped for `service`, never allocated: what a caller holding a
/// handle from another client has.
fn handle_of(service: ServiceId) -> Handle {
    Handle::new(service, StreamId::current(), 8)
}

#[test_log::test]
fn a_handle_of_this_client_passes_the_check() {
    let client = test_client(&DummyDevice);
    let handle = client.empty(8);

    assert!(client.check(&[handle]).is_ok());
}

/// A reservation that fails leaves no slice to carry the failure, so the check
/// has to notice the missing allocation itself. Past the device's page size,
/// so no pool accepts it and nothing is allocated on the host either.
#[test_log::test]
fn a_handle_whose_reservation_failed_is_refused() {
    let client = test_client(&DummyDevice);
    let served = client.empty(8);
    let refused = client.empty(1024 * 1024 * 1024);

    assert!(client.check([&served]).is_ok());
    let Err(ServerError::Several { errors, .. }) = client.check([&served, &refused]) else {
        panic!("the refused buffer passed the check");
    };
    assert!(matches!(
        errors[..],
        [ServerError::Io(IoError::NotFound { .. })]
    ));
    assert!(client.read_one(refused).is_err());
}

#[test_log::test]
fn a_handle_from_another_device_of_the_same_runtime_is_refused() {
    let client = test_client(&DummyDevice);
    let other_device = DeviceId::new(0, 1);
    let handle = handle_of(ServiceId::of::<DummyServer>(other_device));

    let err = client.check(&[handle]).unwrap_err();

    assert!(
        matches!(err, ServerError::ForeignHandle { .. }),
        "expected the handle to be refused, got: {err}"
    );
}

/// Two runtimes can hand out the same [`DeviceId`]; the service type is what
/// tells their devices apart.
#[test_log::test]
fn a_handle_from_another_runtime_on_the_same_device_id_is_refused() {
    let client = test_client(&DummyDevice);
    let same_device = client.service_id().device;
    let handle = handle_of(ServiceId::of::<()>(same_device));

    let err = client.check(&[handle]).unwrap_err();

    assert!(
        matches!(err, ServerError::ForeignHandle { .. }),
        "expected the handle to be refused, got: {err}"
    );
}

/// A call with no error to return stops instead of reading another device's
/// memory.
#[test_log::test]
#[should_panic(expected = "was used on")]
fn writing_through_a_foreign_handle_panics() {
    let client = test_client(&DummyDevice);
    let handle = handle_of(ServiceId::of::<()>(DeviceId::new(0, 0)));

    client.write(&handle, Bytes::from_bytes_vec(vec![0; 8]));
}

/// The transfer reads the source on this client's server, so a handle from
/// elsewhere is refused before the read, on either transfer path.
#[test_log::test]
#[should_panic(expected = "was used on")]
fn transferring_a_foreign_handle_to_another_client_panics() {
    let mut client = test_client(&DummyDevice);
    let destination = client.clone();
    let handle = handle_of(ServiceId::of::<()>(DeviceId::new(0, 0)));

    client.to_client(handle, &destination, ElemType::UInt(UIntKind::U8));
}

#[test_log::test]
fn a_transfer_between_devices_of_the_same_runtime_round_trips() {
    let mut source = test_client(&DummyDevice);
    let destination = Client::load::<DummyServer>(DeviceId::new(0, 1));
    let bytes = [1u8, 2, 3, 4];
    let handle = source.create_from_slice(&bytes);

    let transferred = source.to_client(handle, &destination, ElemType::UInt(UIntKind::U8));

    assert_eq!(transferred.service, destination.service_id());
    assert_eq!(destination.read_one(transferred).unwrap().to_vec(), bytes);
}

#[test_log::test]
#[should_panic(expected = "no transport between its devices")]
fn a_transfer_without_a_device_transport_panics_on_the_caller() {
    let mut source = test_client(&DummyDevice);
    let destination = Client::load::<DummyServer>(DeviceId::new(0, 1));
    let handle = source.create_from_slice(&[1u8, 2, 3, 4]);
    assert!(!source.has_device_transport());

    let descriptor = handle.copy_descriptor([4].into(), [1].into(), 1);
    source.to_client_tensor(descriptor, &destination, ElemType::UInt(UIntKind::U8));
}

#[test_log::test]
#[should_panic(expected = "no transport between its devices")]
fn an_all_reduce_without_a_device_transport_panics_on_the_caller() {
    let mut client = test_client(&DummyDevice);
    let handle = client.create_from_slice(&[1u8, 2, 3, 4]);
    let device_ids = vec![DeviceId::new(0, 0), DeviceId::new(0, 1)];

    client.all_reduce(
        handle.clone(),
        handle,
        ElemType::UInt(UIntKind::U8),
        device_ids,
        ReduceOperation::Sum,
    );
}

#[test_log::test]
fn a_sync_collective_without_a_device_transport_waits_for_nothing() {
    let client = test_client(&DummyDevice);
    client.sync_collective();
}

/// Two clients of different runtimes are the same type now, so nothing but
/// this check keeps a transfer from taking a collective path the destination
/// does not have. The bytes go through the host instead.
#[test_log::test]
fn a_transfer_across_runtimes_goes_through_the_host() {
    let mut source = test_client(&DummyDevice);
    let destination = Client::load::<DummyServer<Other>>(DeviceId::new(0, 0));
    let bytes = [5u8, 6, 7, 8];
    let handle = source.create_from_slice(&bytes);

    let transferred = source.to_client(handle, &destination, ElemType::UInt(UIntKind::U8));

    assert_eq!(transferred.service, destination.service_id());
    assert_eq!(destination.read_one(transferred).unwrap().to_vec(), bytes);
}

/// Naming a server type the client was not built from is an error on the
/// calling thread, not a failed downcast on the device thread. The client
/// keeps working afterwards.
#[test_log::test]
fn asking_for_the_resource_of_another_server_type_is_refused() {
    let client = test_client(&DummyDevice);
    let handle = client.create_from_slice(&[1u8, 2, 3, 4]);

    let err = client
        .get_resource::<DummyServer<Other>>(handle.clone())
        .unwrap_err();

    assert!(
        matches!(err, ServerError::ServiceMismatch { .. }),
        "expected the server type to be refused, got: {err}"
    );
    assert!(client.get_resource::<DummyServer>(handle.clone()).is_ok());
    assert_eq!(client.read_one(handle).unwrap().to_vec(), [1, 2, 3, 4]);
}
// only excludes the `serial` ones.
#[test_log::test]
#[serial_test::parallel]
fn execute_elementwise_addition() {
    let client = test_client(&DummyDevice);
    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);

    client.launch(
        Box::new(KernelTask::new(DummyElementwiseAddition)),
        CubeCount::Static(1, 1, 1),
        KernelArguments::new().with_buffers(vec![
            lhs.binding(),
            rhs.binding(),
            out.clone().binding(),
        ]),
    );

    let obtained_resource = client.read_one(out).unwrap().to_vec();

    assert_eq!(obtained_resource, Vec::from([4, 5, 6]))
}

/// A profile the server refuses — as one is inside a graph capture window —
/// must cost the observer its timing and nothing else: the kernel still runs,
/// [`launched`](cubecl_server::logging::LaunchObserver::launched) still
/// arrives, and `timed` is skipped. `serial` because the observer slot, the
/// refusal toggle, and dry runs are all process-wide.
#[test_log::test]
#[serial_test::serial]
fn a_refused_profile_degrades_to_an_untimed_launch() {
    use cubecl_server::logging::{
        Duration, LaunchObservation, LaunchObserver, TimingMethod, TimingRequest,
    };

    #[derive(Default)]
    struct WantsTiming {
        launched: std::sync::Mutex<Vec<&'static str>>,
        timed: std::sync::Mutex<Vec<&'static str>>,
    }
    impl LaunchObserver for WantsTiming {
        fn launched(&self, kernel: &'static str) {
            self.launched.lock().unwrap().push(kernel);
        }
        fn timing(&self) -> TimingRequest {
            TimingRequest::Resolved
        }
        fn timed(&self, kernel: &'static str, _duration: Duration, _method: TimingMethod) {
            self.timed.lock().unwrap().push(kernel);
        }
    }

    let observer = std::sync::Arc::new(WantsTiming::default());
    let watching = LaunchObservation::new(observer.clone());
    REFUSE_PROFILES.store(true, core::sync::atomic::Ordering::Relaxed);

    let client = test_client(&DummyDevice);
    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    client.launch(
        Box::new(KernelTask::new(DummyElementwiseAddition)),
        CubeCount::Static(1, 1, 1),
        KernelArguments::new().with_buffers(vec![
            lhs.binding(),
            rhs.binding(),
            out.clone().binding(),
        ]),
    );
    let obtained_resource = client.read_one(out).unwrap().to_vec();

    REFUSE_PROFILES.store(false, core::sync::atomic::Ordering::Relaxed);
    drop(watching);

    assert_eq!(
        obtained_resource,
        Vec::from([4, 5, 6]),
        "the refused profile must not cost the launch"
    );
    assert_eq!(
        observer.launched.lock().unwrap().len(),
        1,
        "the launch is still reported"
    );
    assert!(
        observer.timed.lock().unwrap().is_empty(),
        "nothing was measured, so nothing is reported as measured"
    );
}

#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn autotune_basic_addition_execution() {
    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_basic_addition_execution");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let test_set = TUNER.init(&"test".to_string(), || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::addition_set(client, shapes)
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    let obtained_resource = client.read_one(out).unwrap().to_vec();

    // If slow kernel was selected it would output [0, 1, 2]
    assert_eq!(obtained_resource, Vec::from([4, 5, 6]));
}

#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn autotune_basic_multiplication_execution() {
    static TUNER: LocalTuner<String, String> =
        local_tuner!("autotune_basic_multiplication_execution");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let test_set = TUNER.init(&"test".to_string(), || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::multiplication_set(client, shapes)
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    let obtained_resource = client.read_one(out).unwrap().to_vec();

    // If slow kernel was selected it would output [0, 1, 2]
    assert_eq!(obtained_resource, Vec::from([0, 4, 8]));
}

/// A tuned pick belongs to the environment it was tuned under: switching
/// environments makes it unreachable, tuning again lands in the new one, and
/// switching back serves the persisted result through hydration rather than
/// re-tuning.
#[test_log::test]
#[cfg(all(feature = "std", persistence))]
#[serial_test::serial]
fn autotune_resets_when_the_environment_switches() {
    use cubecl_server::tune::{TuneCacheResult, Tuner};

    let first = tempfile::tempdir().unwrap();
    let second = tempfile::tempdir().unwrap();
    cubecl_environment::environment::set_root(first.path());

    let client = test_client(&DummyDevice);
    let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
    let set = dummy::addition_set(test_client(&DummyDevice), shapes);

    let handles = vec![
        client.create_from_slice(&[0, 1, 2]),
        client.create_from_slice(&[4, 4, 4]),
        client.empty(3),
    ];
    let key = set.generate_key(&handles);

    let tuner: Tuner<String> = Tuner::new("environment-switch", "device0");
    tuner.check_tune(
        &key,
        &handles,
        &set,
        || set.compute_checksum(),
        &client,
        None,
    );
    assert!(matches!(tuner.fastest(&key), TuneCacheResult::Hit { .. }));

    // The pick was tuned under `first`: after the switch it must not be
    // served, and tuning again fills `second`.
    cubecl_environment::environment::set_root(second.path());
    assert!(matches!(tuner.fastest(&key), TuneCacheResult::Miss));
    tuner.check_tune(
        &key,
        &handles,
        &set,
        || set.compute_checksum(),
        &client,
        None,
    );
    assert!(matches!(tuner.fastest(&key), TuneCacheResult::Hit { .. }));

    // Switching back serves `first`'s persisted result through hydration and
    // checksum validation, with no third tune.
    cubecl_environment::environment::set_root(first.path());
    assert!(matches!(tuner.fastest(&key), TuneCacheResult::Miss));
    let rehydrated = tuner.check_tune(
        &key,
        &handles,
        &set,
        || set.compute_checksum(),
        &client,
        None,
    );
    assert!(matches!(rehydrated, TuneCacheResult::Hit { .. }));
}

/// Roots the environment at `root` for the rest of the test.
///
/// The runtime configuration is loaded first: it loads on first use and roots
/// the environment where it says, so a test running beside this one could
/// otherwise load it halfway through and move this test's records elsewhere.
#[cfg(all(feature = "std", persistence))]
fn rooted_at(root: &std::path::Path) {
    use cubecl_server::config::RuntimeConfig;

    let _ = cubecl_server::config::CubeClRuntimeConfig::get();
    cubecl_environment::environment::set_root(root);
}

/// Records at `level` from here on, keeping every session.
#[cfg(all(feature = "std", persistence))]
fn recording_at(level: cubecl_environment::records::RecordLevel) {
    use cubecl_environment::records::{self, RecordsConfig};

    records::configure(RecordsConfig {
        level,
        ..Default::default()
    });
}

/// A tune leaves a record beside its answer: the candidates in the order they
/// ran, each with its wall, the whole tune's wall, and the key and table the
/// answer is stored under, stamped in the environment's session.
#[test_log::test]
#[cfg(all(feature = "std", persistence))]
#[serial_test::serial]
fn a_tune_is_recorded_in_order_with_its_walls() {
    use cubecl_environment::persistence::Database;
    use cubecl_environment::records::{RecordLevel, Records};
    use cubecl_server::tune::{TuneCacheResult, TuneRecord, Tuner};

    let root = tempfile::tempdir().unwrap();
    rooted_at(root.path());
    recording_at(RecordLevel::Basic);

    let client = test_client(&DummyDevice);
    let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
    let set = dummy::addition_set(test_client(&DummyDevice), shapes);
    let handles = vec![
        client.create_from_slice(&[0, 1, 2]),
        client.create_from_slice(&[4, 4, 4]),
        client.empty(3),
    ];
    let key = set.generate_key(&handles);

    let tuner: Tuner<String> = Tuner::new("recorded", "device0");
    let answer = tuner.check_tune(
        &key,
        &handles,
        &set,
        || set.compute_checksum(),
        &client,
        None,
    );
    let TuneCacheResult::Hit { fastest_index } = answer else {
        panic!("the tune answers inline: {answer:?}");
    };

    let database = Database::open_active().unwrap();
    let tunes = Records::new(&database).read::<TuneRecord<String>>();
    assert_eq!(tunes.len(), 1);
    let tune = &tunes[0].record;
    assert_eq!(tune.entry.key, key);
    assert_eq!(tune.entry.checksum, set.compute_checksum());
    assert_eq!(tune.winner, fastest_index);
    assert!(tune.table.starts_with("autotune/") && tune.table.ends_with("device0/recorded"));
    let names: Vec<&str> = tune
        .trials
        .iter()
        .map(|trial| trial.name.as_str())
        .collect();
    assert_eq!(
        names,
        vec!["add", "add_slow_wrong"],
        "in registration order"
    );
    assert!(tune.trials.iter().all(|trial| !trial.wall.is_zero()));
    assert!(
        tune.trials
            .iter()
            .map(|trial| trial.wall)
            .sum::<core::time::Duration>()
            <= tune.wall
    );
    assert_eq!(tune.short_circuit, None);
    assert!(!tune.dry_run);
    assert!(tune.stored, "the table took the answer");

    let sessions = Records::new(&database).sessions();
    assert_eq!(sessions.len(), 1);
    assert_eq!(tunes[0].stamp.session, sessions[0].id);
}

/// A tune stopped by the short circuit records which candidate stopped it.
#[test_log::test]
#[cfg(all(feature = "std", persistence, not(target_family = "wasm")))]
#[serial_test::serial]
fn a_short_circuited_tune_records_where_it_stopped() {
    use cubecl_environment::persistence::Database;
    use cubecl_environment::records::{RecordLevel, Records};
    use cubecl_server::tune::{TuneRecord, Tuner};

    let root = tempfile::tempdir().unwrap();
    rooted_at(root.path());
    recording_at(RecordLevel::Basic);

    let client = test_client(&DummyDevice);
    let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
    let set = dummy::bounded_addition_set_slow_first(test_client(&DummyDevice), shapes, 1.0, 1.0);
    let handles = vec![
        client.create_from_slice(&[0, 1, 2]),
        client.create_from_slice(&[4, 4, 4]),
        client.empty(3),
    ];
    let key = set.generate_key(&handles);

    let tuner: Tuner<String> = Tuner::new("short-circuited", "device0");
    tuner.check_tune(
        &key,
        &handles,
        &set,
        || set.compute_checksum(),
        &client,
        None,
    );

    let database = Database::open_active().unwrap();
    let tunes = Records::new(&database).read::<TuneRecord<String>>();
    let tune = &tunes.last().unwrap().record;
    assert_eq!(tune.short_circuit.as_deref(), Some("add_slow_wrong"));
    // How many ran before the limit was met is the scheduler's business: the
    // adaptive one warms the whole round up first.
    assert!(
        tune.trials
            .iter()
            .any(|trial| trial.name == "add_slow_wrong")
    );
}

/// Recording off writes nothing, and the tune answers as before.
#[test_log::test]
#[cfg(all(feature = "std", persistence))]
#[serial_test::serial]
fn nothing_is_recorded_when_records_are_off() {
    use cubecl_environment::persistence::Database;
    use cubecl_environment::records::{RecordLevel, Records};
    use cubecl_server::tune::{TuneCacheResult, TuneRecord, Tuner};

    let root = tempfile::tempdir().unwrap();
    rooted_at(root.path());
    recording_at(RecordLevel::Off);

    let client = test_client(&DummyDevice);
    let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
    let set = dummy::addition_set(test_client(&DummyDevice), shapes);
    let handles = vec![
        client.create_from_slice(&[0, 1, 2]),
        client.create_from_slice(&[4, 4, 4]),
        client.empty(3),
    ];
    let key = set.generate_key(&handles);
    let tuner: Tuner<String> = Tuner::new("unrecorded", "device0");
    let answer = tuner.check_tune(
        &key,
        &handles,
        &set,
        || set.compute_checksum(),
        &client,
        None,
    );
    recording_at(RecordLevel::Basic);

    assert!(matches!(answer, TuneCacheResult::Hit { .. }));
    let database = Database::open_active().unwrap();
    assert!(
        Records::new(&database)
            .read::<TuneRecord<String>>()
            .is_empty()
    );
}

/// A throughput bound with a generous `time_limit` makes the tuner short-circuit: it
/// accepts the first candidate whose median is under the limit and never benchmarks the
/// rest. The set registers the slow+wrong kernel first, so a hit proves the faster `add`
/// was skipped rather than raced and lost.
#[test_log::test]
#[cfg(all(feature = "std", not(target_family = "wasm")))]
#[serial_test::serial]
fn autotune_bounds_short_circuit_accepts_first_within_limit() {
    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_bounds_short_circuit");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let test_set = TUNER.init(&"test".to_string(), || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        // time_limit = (1 / 1.0) / 1.0 = 1s, far above the ~few-ms slow kernel, so the
        // first candidate is already "close enough".
        dummy::bounded_addition_set_slow_first(client, shapes, 1.0, 1.0)
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    let obtained = client.read_one(out).unwrap().to_vec();

    // The slow+wrong kernel copies lhs -> out. Getting it back means the tuner stopped
    // at the first candidate and never reached the faster, correct `add`.
    assert_eq!(obtained, vec![0, 1, 2]);
}

/// The mirror of the test above: an unreachable `time_limit` disqualifies every
/// candidate, so the tuner falls back to benchmarking the whole batch and the faster
/// `add` wins despite being registered second. This isolates the short-circuit as the
/// cause of the early exit, not the mere presence of a bound.
#[test_log::test]
#[cfg(all(feature = "std", not(target_family = "wasm")))]
#[serial_test::serial]
fn autotune_bounds_unreachable_limit_benchmarks_all() {
    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_bounds_unreachable_limit");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let test_set = TUNER.init(&"test".to_string(), || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        // time_limit = (1 / 1e12) / 1.0 ≈ 1ps, below any real median, so nothing qualifies.
        dummy::bounded_addition_set_slow_first(client, shapes, 1e12, 1.0)
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    let obtained = client.read_one(out).unwrap().to_vec();

    assert_eq!(obtained, vec![4, 5, 6]);
}

/// `with_short_circuit(false)` disables early exit even when the bound is generous.
/// The slow+wrong kernel is first, but since short-circuit is off, the tuner benchmarks
/// all candidates and the faster correct `add` wins.
#[test_log::test]
#[cfg(all(feature = "std", not(target_family = "wasm")))]
#[serial_test::parallel]
fn autotune_short_circuit_disabled_benchmarks_all() {
    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_short_circuit_disabled");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let test_set = TUNER.init(&"test".to_string(), || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::bounded_addition_set_no_short_circuit(client, shapes)
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    let obtained = client.read_one(out).unwrap().to_vec();

    // Short-circuit is disabled, so all candidates are benchmarked and the
    // faster correct `add` kernel wins despite the generous bound.
    assert_eq!(obtained, vec![4, 5, 6]);
}

/// A set with an eviction registered has it run before every measured sample and for nothing
/// else: a candidate whose operands fit the cache is otherwise timed reading what the previous
/// sample left warm, while a warm-up is not measured and gets no eviction. The eviction is
/// handed the reference inputs, not the generated ones the candidates run on.
///
/// Counted against the candidates' own launches, so the assertion holds under either
/// scheduler: the adaptive one warms each candidate up once, the fixed-count pass three times.
#[test_log::test]
#[cfg(all(feature = "std", not(target_family = "wasm")))]
#[serial_test::parallel]
fn autotune_evicts_before_every_measured_sample() {
    use cubecl_runtime::config::{CubeClRuntimeConfig, RuntimeConfig};
    use std::sync::Arc;
    use std::sync::atomic::{AtomicUsize, Ordering};

    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_eviction");

    let candidates = 2;
    let warmups = if CubeClRuntimeConfig::get().autotune.bench.adaptive {
        1
    } else {
        3
    };

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let calls = Arc::new(AtomicUsize::new(0));
    let evictions = Arc::new(AtomicUsize::new(0));
    let misdirected = Arc::new(AtomicUsize::new(0));
    let calls_set = calls.clone();
    let evictions_set = evictions.clone();
    let misdirected_set = misdirected.clone();

    let uid = fresh_tune_key_uid();

    let test_set = TUNER.init(&"test".to_string(), move || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::addition_set_with_eviction(
            client,
            shapes,
            uid.clone(),
            calls_set.clone(),
            evictions_set.clone(),
            misdirected_set.clone(),
        )
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    // The winner ran on the reference inputs once the tune was over.
    assert_eq!(client.read_one(out).unwrap().to_vec(), vec![4, 5, 6]);

    // The launches that were not measured samples: the warm-ups, and the winner's real run.
    let unmeasured = candidates * warmups + 1;
    let calls = calls.load(Ordering::Relaxed);
    let evictions = evictions.load(Ordering::Relaxed);
    let misdirected = misdirected.load(Ordering::Relaxed);

    assert_eq!(
        misdirected, 0,
        "{misdirected} evictions ran on the generated inputs rather than the reference ones"
    );
    // Every candidate was warmed up and then measured at least once.
    assert!(
        calls > unmeasured,
        "the candidates were launched {calls} times, no more than the {unmeasured} unmeasured ones"
    );
    // One eviction per measured sample, and none for anything else.
    assert_eq!(
        evictions,
        calls - unmeasured,
        "{evictions} evictions for {calls} launches, {unmeasured} of them unmeasured"
    );
}

/// 2-I1 — A panic inside a profiled closure surfaces at the `Client` caller as
/// the *original* panic (the issue's symptom), instead of an opaque `CallError`.
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::parallel]
fn profile_reraises_panic_from_profiled_closure() {
    let client = test_client(&DummyDevice);

    let reraised = std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
        client.profile(|| panic!("kernel boom"), "test")
    }));

    let payload = match reraised {
        Ok(_) => panic!("a panic in the profiled closure must surface at the caller"),
        Err(payload) => payload,
    };
    assert_eq!(
        payload.downcast_ref::<&str>().copied(),
        Some("kernel boom"),
        "the re-raised panic must carry the original message"
    );
}

/// 2-I2 — The success path through `profile` still returns `Ok` (guards against the
/// `unwrap_or_resume` swap turning a normal result into a panic).
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::parallel]
fn profile_returns_ok_on_success() {
    let client = test_client(&DummyDevice);

    let (value, _duration) = client
        .profile(|| 123u32, "ok")
        .expect("a successful profiled closure must return Ok");
    assert_eq!(value, 123);
}

/// 2-I3 — Design guard: the public `Client::exclusive` stays *recoverable* — a
/// task panic becomes `Err(ServerError::Generic)` (so autotune can skip a failing
/// candidate) rather than re-raising. The original message is still preserved in the
/// error string thanks to the `CallError` payload.
#[test_log::test]
#[cfg(feature = "std")]
fn exclusive_stays_recoverable_on_task_panic() {
    use cubecl_server::server::ServerError;

    let client = test_client(&DummyDevice);

    let result = client.exclusive(|| panic!("exclusive boom"));

    match result {
        Err(ServerError::Generic { reason, .. }) => assert!(
            reason.contains("exclusive boom"),
            "the recoverable error must carry the original message, got: {reason}"
        ),
        Err(other) => panic!("expected a recoverable ServerError::Generic, got: {other}"),
        Ok(()) => panic!("expected exclusive to return Err on a task panic, not Ok"),
    }
}

/// A tune key component that is new on every run.
///
/// The persistent autotune cache outlives the process, so a key has to be unique for the
/// candidates to actually be benchmarked instead of read back from the cache.
#[cfg(feature = "std")]
fn fresh_tune_key_uid() -> String {
    std::time::SystemTime::now()
        .duration_since(std::time::UNIX_EPOCH)
        .unwrap()
        .as_nanos()
        .to_string()
}

/// A tunable that rejects its own configuration fails identically on every call, so the
/// benchmark must stop at the first rejection rather than paying a profile round trip for
/// every warmup and sample before reporting it.
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn autotune_stops_sampling_a_rejected_candidate() {
    use std::sync::Arc;
    use std::sync::atomic::{AtomicUsize, Ordering};

    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_rejected_candidate");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let calls = Arc::new(AtomicUsize::new(0));
    let calls_set = calls.clone();

    let uid = fresh_tune_key_uid();

    let test_set = TUNER.init(&"test".to_string(), move || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::addition_set_with_rejected_candidate(client, shapes, uid.clone(), calls_set.clone())
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    // The rejected candidate is dropped after its first failure, and the surviving `add`
    // kernel still wins the tuning.
    assert_eq!(calls.load(Ordering::Relaxed), 1);
    assert_eq!(client.read_one(out).unwrap().to_vec(), vec![4, 5, 6]);
}

/// A candidate whose kernel fails to compile is handled lazily, with no unwinding
/// anywhere: the server records the launch failure and returns it at `end_profile`, the
/// tuner drops the candidate on that error, the surviving kernel wins, and the device
/// keeps serving afterwards.
///
/// The broken candidate is the *last* one in the set, so nothing flushes the server
/// after it. Anything the profile boundary failed to drain is still pending when the
/// tuner returns, and would otherwise be handed to the next test: the dummy server is
/// process-global.
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn autotune_skips_a_candidate_that_fails_compilation() {
    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_failing_compilation");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let uid = fresh_tune_key_uid();

    let test_set = TUNER.init(&"test".to_string(), move || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::addition_set_with_failing_compilation(client, shapes, uid.clone())
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    // The profile boundary consumed the failure: nothing is left for the next caller,
    // which on this process-global server would be an unrelated test.
    client
        .flush()
        .expect("the launch failure must not survive the profile it happened in");

    // The failing candidate was skipped on the lazily returned error and `add` won.
    assert_eq!(client.read_one(out).unwrap().to_vec(), vec![4, 5, 6]);

    // The failure never became a panic: the device keeps serving.
    let after = client
        .exclusive(|| 42)
        .expect("the device must keep serving after a candidate failed to compile");
    assert_eq!(after, 42);
}

/// The poisoning order: the candidate that fails to compile goes *first*, and every
/// candidate after it shares its inputs and output. The failed launch never ran, so it
/// must claim only the output it declared it would write — the shared inputs stay
/// clean, the candidates behind it still run, and the winner's write releases the
/// failed candidate's claim on the output.
///
/// This is what the declared IO on the launch arguments exists for. Without it the
/// compile failure would taint every binding it was given, inputs included: each later
/// candidate would skip on the inputs' failure, the tune would end with no survivor,
/// and the operation's real inputs would stay unreadable long after the tune.
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn autotune_survives_a_failing_candidate_ahead_of_the_winner() {
    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_failing_compilation_first");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs.clone(), rhs.clone(), out.clone()];

    let uid = fresh_tune_key_uid();

    let test_set = TUNER.init(&"test".to_string(), move || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::addition_set_with_failing_compilation_first(client, shapes, uid.clone())
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    client
        .flush()
        .expect("the launch failure must not survive the profile it happened in");

    // The inputs the broken candidate was only going to read carry no failure.
    assert_eq!(client.read_one(lhs).unwrap().to_vec(), vec![0, 1, 2]);
    assert_eq!(client.read_one(rhs).unwrap().to_vec(), vec![4, 4, 4]);

    // The surviving `add` ran on those inputs, won the tune, and its write released the
    // broken candidate's claim on the shared output.
    assert_eq!(client.read_one(out).unwrap().to_vec(), vec![4, 5, 6]);
}

/// The round robin end to end, which the unit tests around it cannot reach: a candidate far
/// enough behind has to stop being sampled partway through, while the ones still in contention
/// keep going and the fastest of them wins.
///
/// Skipped unless the adaptive scheduler is the strategy in force, since a fixed-count pass
/// samples every candidate the same number of times by design.
#[test_log::test]
#[cfg(all(feature = "std", not(target_family = "wasm")))]
#[serial_test::serial]
fn autotune_stops_sampling_an_eliminated_candidate() {
    use cubecl_server::config::{CubeClRuntimeConfig, RuntimeConfig};
    use std::sync::Arc;
    use std::sync::atomic::{AtomicUsize, Ordering};

    let bench = CubeClRuntimeConfig::get().autotune.bench.clone();
    if !bench.adaptive {
        return;
    }
    let (min_samples, max_samples) = bench.samples();

    static TUNER: LocalTuner<String, String> = local_tuner!("autotune_eliminated_candidate");

    let client = test_client(&DummyDevice);

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    let handles = vec![lhs, rhs, out.clone()];

    let fast_calls = Arc::new(AtomicUsize::new(0));
    let slow_calls = Arc::new(AtomicUsize::new(0));
    let fast_set = fast_calls.clone();
    let slow_set = slow_calls.clone();

    let uid = fresh_tune_key_uid();

    let test_set = TUNER.init(&"test".to_string(), move || {
        let client = test_client(&DummyDevice);
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::addition_set_with_slow_candidate(
            client,
            shapes,
            uid.clone(),
            fast_set.clone(),
            slow_set.clone(),
        )
    });
    TUNER.execute(&"test".to_string(), &client, test_set, handles);

    let fast = fast_calls.load(Ordering::Relaxed);
    let slow = slow_calls.load(Ordering::Relaxed);

    // Every candidate is warmed up once and sampled at least to the elimination floor, so the
    // slow one cannot have been dropped before it had the evidence against it.
    assert!(
        slow > min_samples,
        "the slow candidate was dropped before it earned it: {slow} calls"
    );
    // A full pass is one warmup plus the ceiling. The slow candidate must fall short of that,
    // and short of what the survivors spent, or nothing was eliminated at all.
    assert!(
        slow < max_samples + 1,
        "the slow candidate was sampled to the ceiling: {slow} calls"
    );
    assert!(
        slow < fast,
        "the slow candidate kept pace with the survivors: {slow} vs {fast} calls"
    );

    // The fast kernel wins, so the output is a real addition rather than the slow kernel's copy.
    assert_eq!(client.read_one(out).unwrap().to_vec(), vec![4, 5, 6]);
}

/// A dry run drops an ordinary launch: the server still compiles the kernel,
/// exactly as it would otherwise, and then never runs it.
///
/// This is the mode's whole promise and its whole hazard in one assertion — a
/// pass under it runs for the shapes it provokes, and anything it reads back
/// is meaningless.
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn a_dry_run_drops_an_ordinary_launch() {
    use cubecl_server::dry_run::DryRun;

    let client = test_client(&DummyDevice);
    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.create_from_slice(&[9, 9, 9]);

    let add = |out: &cubecl_server::server::Handle| {
        client.launch(
            Box::new(KernelTask::new(DummyElementwiseAddition)),
            CubeCount::Static(1, 1, 1),
            KernelArguments::new().with_buffers(vec![
                lhs.clone().binding(),
                rhs.clone().binding(),
                out.clone().binding(),
            ]),
        );
    };

    {
        let _dry_run = DryRun::new();
        add(&out);

        assert_eq!(
            client.read_one(out.clone()).unwrap().to_vec(),
            Vec::from([9, 9, 9]),
            "the launch was compiled and then dropped, so the output is untouched"
        );
    }

    // The very same launch runs once the mode is off: nothing was poisoned by
    // having been skipped, and the compiled artifact is reused.
    add(&out);

    assert_eq!(client.read_one(out).unwrap().to_vec(), Vec::from([4, 5, 6]));
}

/// The exception that makes the mode worth having: autotune still executes,
/// because its launches *are* the measurement.
///
/// Tuning happens inside the dry run; the winner is then executed outside it. A
/// tuner whose candidates had all been skipped would have nothing to tell them
/// apart, and the slow kernel — which writes `[0, 1, 2]` — would win as often
/// as not.
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn a_dry_run_still_autotunes() {
    use cubecl_server::dry_run::DryRun;

    static TUNER: LocalTuner<String, String> = local_tuner!("a_dry_run_still_autotunes");

    let client = test_client(&DummyDevice);
    let test_set = TUNER.init(&"test".to_string(), || {
        let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
        dummy::addition_set(test_client(&DummyDevice), shapes)
    });

    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);

    {
        let _dry_run = DryRun::new();
        TUNER.execute(
            &"test".to_string(),
            &client,
            test_set.clone(),
            vec![lhs.clone(), rhs.clone(), out.clone()],
        );
    }

    // Cached now, so this is the fast path: it executes the winner and nothing
    // else.
    TUNER.execute(
        &"test".to_string(),
        &client,
        test_set,
        vec![lhs, rhs, out.clone()],
    );

    assert_eq!(
        client.read_one(out).unwrap().to_vec(),
        Vec::from([4, 5, 6]),
        "the candidates were measured inside the dry run, so the fast one won"
    );
}

/// The other half of what a dry run leaves alone: memory. A reservation no
/// executed launch, read or write ever touches gets no device backing — the
/// skipped launch resolves nothing — and backing is installed on demand the
/// first time the buffer is actually dereferenced.
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn a_dry_run_reserves_without_mapping() {
    use cubecl_server::dry_run::DryRun;
    use cubecl_server::memory_management::MemoryPoolReport;

    let client = test_client(&DummyDevice);
    let dry_run = DryRun::new();

    // Big enough to land in a large-page pool of its own: the parallel tests
    // in this binary allocate a few bytes at a time, so nothing else touches
    // (or materializes) that pool's pages while this test looks at them.
    const SIZE: u64 = 32 * 1024 * 1024;

    // The pool the reservation actually landed in — self-identified by the
    // high-water it left, so the test tracks `accept`'s routing instead of
    // predicting it.
    fn arena(report: &cubecl_server::memory_management::MemoryReport) -> MemoryPoolReport {
        report
            .dynamic
            .iter()
            .find(|pool| pool.largest_alloc == SIZE)
            .expect("some pool served the buffer")
            .clone()
    }

    // A workload-sized buffer, launched against only inside the dry run: the
    // launch is compiled and dropped before resolving any resource.
    let out = client.empty(SIZE as usize);
    client.launch(
        Box::new(KernelTask::new(DummyElementwiseAddition)),
        CubeCount::Static(1, 1, 1),
        KernelArguments::new().with_buffers(vec![
            out.clone().binding(),
            out.clone().binding(),
            out.clone().binding(),
        ]),
    );

    let report = client.memory_report();
    let pool = arena(&report);
    assert_eq!(
        pool.pages_unmapped, pool.pages,
        "the reservation must have no device backing: {report:?}"
    );
    assert!(pool.pages >= 1, "{report:?}");

    // Reading is a resolution: the backing appears exactly there.
    let data = client.read_one(out).unwrap();
    assert_eq!(data.len(), SIZE as usize);
    let report = client.memory_report();
    assert_eq!(
        arena(&report).pages_unmapped,
        0,
        "resolution installed the backing: {report:?}"
    );

    drop(dry_run);
}

/// A tunable set is built from the device it will run on — a closure captures
/// that device's client to ask what it supports, or reads its hardware
/// properties to decide what is worth offering. So the set cache is keyed by
/// device as well as by initializer: keyed by the initializer alone, whichever
/// device tuned first would answer for every device after it.
#[test_log::test]
#[cfg(feature = "std")]
#[serial_test::serial]
fn a_set_is_built_once_per_device_not_once_per_process() {
    use std::sync::atomic::{AtomicUsize, Ordering};

    static TUNER: LocalTuner<String, String> =
        local_tuner!("a_set_is_built_once_per_device_not_once_per_process");
    static BUILDS: AtomicUsize = AtomicUsize::new(0);

    let client = test_client(&DummyDevice);

    let build = |device: &str| {
        TUNER.init(&device.to_string(), || {
            BUILDS.fetch_add(1, Ordering::Relaxed);
            let shapes = vec![vec![1, 3], vec![1, 3], vec![1, 3]];
            dummy::addition_set(test_client(&DummyDevice), shapes)
        })
    };

    let first = build("gpu-0");
    assert_eq!(BUILDS.load(Ordering::Relaxed), 1);

    // Same device again: the cached set, no rebuild.
    let first_again = build("gpu-0");
    assert_eq!(
        BUILDS.load(Ordering::Relaxed),
        1,
        "the same device must reuse its set rather than rebuild it"
    );
    assert!(
        std::sync::Arc::ptr_eq(&first, &first_again),
        "the same device must get the very same set back"
    );

    // A second device: its own set, built against itself.
    let second = build("gpu-1");
    assert_eq!(
        BUILDS.load(Ordering::Relaxed),
        2,
        "a device that has not tuned yet must build its own set"
    );
    assert!(
        !std::sync::Arc::ptr_eq(&first, &second),
        "one device's set must not answer for another's"
    );

    // Both remain usable and independently cached.
    let lhs = client.create_from_slice(&[0, 1, 2]);
    let rhs = client.create_from_slice(&[4, 4, 4]);
    let out = client.empty(3);
    TUNER.execute(
        &"gpu-1".to_string(),
        &client,
        second,
        vec![lhs, rhs, out.clone()],
    );
    assert_eq!(client.read_one(out).unwrap().to_vec(), Vec::from([4, 5, 6]));
    assert_eq!(BUILDS.load(Ordering::Relaxed), 2);
}

/// A backend's trip through compilation is recorded where it starts, with how
/// the artifact was obtained: its kernel, the store key naming the artifact,
/// and what the trip took.
#[test_log::test]
#[cfg(all(feature = "std", persistence))]
#[serial_test::serial]
fn a_compilation_is_recorded_with_its_outcome() {
    use cubecl_environment::persistence::Database;
    use cubecl_environment::records::{RecordLevel, Records};
    use cubecl_server::compiler::{CompilationOutcome, CompilationRecord, CompilationRecording};
    use cubecl_server::id::KernelId;

    struct Recorded;

    let root = tempfile::tempdir().unwrap();
    rooted_at(root.path());
    recording_at(RecordLevel::Basic);

    let id = KernelId::new::<Recorded>().info(3u32);
    let stored = true;
    CompilationRecording::new(&id).compiled(stored);
    CompilationRecording::new(&id).loaded();
    CompilationRecording::new(&id).rekeyed(stored);

    let database = Database::open_active().unwrap();
    let trips = Records::new(&database).read::<CompilationRecord>();
    let outcomes: Vec<CompilationOutcome> = trips.iter().map(|trip| trip.record.outcome).collect();
    assert_eq!(
        outcomes,
        vec![
            CompilationOutcome::Compiled,
            CompilationOutcome::Loaded,
            CompilationOutcome::Rekeyed
        ]
    );
    assert!(trips[0].record.kernel.ends_with("Recorded"));
    assert_eq!(trips[0].record.key, trips[1].record.key);
}

/// A kernel's code — the heaviest thing a record carries — is kept at the
/// full level only, whatever the backend hands the recording: the level is
/// the recording's to check, not each backend's.
#[test_log::test]
#[cfg(all(feature = "std", persistence))]
#[serial_test::serial]
fn a_compilation_keeps_its_code_only_when_records_are_full() {
    use cubecl_environment::persistence::Database;
    use cubecl_environment::records::{RecordLevel, Records};
    use cubecl_server::compiler::{CompilationRecord, CompilationRecording};
    use cubecl_server::id::KernelId;

    struct Coded;

    let root = tempfile::tempdir().unwrap();
    rooted_at(root.path());
    let id = KernelId::new::<Coded>();
    let stored = true;

    for level in [RecordLevel::Basic, RecordLevel::Full] {
        recording_at(level);
        let mut recording = CompilationRecording::new(&id);
        recording.source("source");
        recording.compiled(stored);
    }
    recording_at(RecordLevel::Basic);

    let database = Database::open_active().unwrap();
    let sources: Vec<Option<String>> = Records::new(&database)
        .read::<CompilationRecord>()
        .into_iter()
        .map(|trip| trip.record.source)
        .collect();
    assert_eq!(sources, vec![None, Some("source".to_string())]);
}

/// A kernel compiled with no store to take it — WGSL, or the compilation
/// cache off — changes nothing, and a session that only does that leaves
/// nothing behind. Storing an artifact is what changes the environment.
#[test_log::test]
#[cfg(all(feature = "std", persistence))]
#[serial_test::serial]
fn a_compile_nothing_stored_leaves_no_session() {
    use cubecl_environment::persistence::{Database, Namespace, Store, StoreOptions};
    use cubecl_environment::records::{RecordLevel, Records};
    use cubecl_server::compiler::{CompilationRecord, CompilationRecording, store_compiled};
    use cubecl_server::id::KernelId;

    struct Unstored;

    let root = tempfile::tempdir().unwrap();
    rooted_at(root.path());
    recording_at(RecordLevel::Basic);

    let mut store: Store<u32, u32> =
        Store::new(StoreOptions::new().storage(Namespace::new("test/compiled")));
    assert!(store_compiled(&mut store, 1, 1), "the store took it");

    let id = KernelId::new::<Unstored>();
    let stored = false;
    CompilationRecording::new(&id).compiled(stored);

    let database = Database::open_active().unwrap();
    let records = Records::new(&database);
    assert!(records.sessions().is_empty());
    assert!(records.read::<CompilationRecord>().is_empty());
}

/// A memory snapshot is recorded under the caller's label, carrying the same
/// report the client answers — kept once the session changes something, as a
/// build's does.
#[test_log::test]
#[cfg(all(feature = "std", persistence))]
#[serial_test::serial]
fn a_memory_snapshot_is_recorded_under_its_label() {
    use cubecl_environment::persistence::Database;
    use cubecl_environment::records::{RecordLevel, Records};
    use cubecl_server::memory_management::MemoryRecord;

    let root = tempfile::tempdir().unwrap();
    rooted_at(root.path());
    recording_at(RecordLevel::Basic);

    let client = test_client(&DummyDevice);
    let _held = client.create_from_slice(&[1, 2, 3]);
    client.record_memory("model loaded");
    let database = Database::open_active().unwrap();
    assert!(
        Records::new(&database).read::<MemoryRecord>().is_empty(),
        "held until the session changes something"
    );
    // A kernel compiled into the store: the change a build makes.
    struct Stored;
    let id = cubecl_server::id::KernelId::new::<Stored>();
    let stored = true;
    cubecl_server::compiler::CompilationRecording::new(&id).compiled(stored);

    let snapshots = Records::new(&database).read::<MemoryRecord>();
    assert_eq!(snapshots.len(), 1);
    assert_eq!(snapshots[0].record.label, "model loaded");
    assert_eq!(snapshots[0].record.report, client.memory_report());
}

/// A launch is collected while a collection is open — the kernel a replay has
/// to keep — and only then.
#[test_log::test]
#[serial_test::serial]
fn a_launch_is_collected_while_a_collection_is_open() {
    use cubecl_server::launched::LaunchedKernels;

    let client = test_client(&DummyDevice);
    let launch = || {
        let lhs = client.create_from_slice(&[0, 1, 2]);
        let rhs = client.create_from_slice(&[4, 4, 4]);
        let out = client.empty(3);
        let kernel = KernelTask::new(DummyElementwiseAddition);
        let id = cubecl_server::kernel::KernelMetadata::id(&kernel);
        client.launch(
            Box::new(kernel),
            CubeCount::Static(1, 1, 1),
            KernelArguments::new().with_buffers(vec![lhs.binding(), rhs.binding(), out.binding()]),
        );
        id
    };

    let collection = LaunchedKernels::new();
    let id = launch();
    let launched = collection.finish();
    assert!(launched.contains(&id.stable_hash()));

    let collection = LaunchedKernels::new();
    let launched = collection.finish();
    assert!(launched.is_empty(), "a new collection starts empty");
}