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
|
/*------------------------------------------------------------------------
* Vulkan Conformance Tests
* ------------------------
*
* Copyright (c) 2020 The Khronos Group Inc.
* Copyright (c) 2020 Advanced Micro Devices, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
/*!
* \file
* \brief Pipeline Cache Tests
*/
/*--------------------------------------------------------------------*/
#include "vktPipelineCreationCacheControlTests.hpp"
#include "deRandom.hpp"
#include "deUniquePtr.hpp"
#include "tcuStringTemplate.hpp"
#include "vkDeviceUtil.hpp"
#include "vkRefUtil.hpp"
#include "vktConstexprVectorUtil.hpp"
#include "vktTestCase.hpp"
#include "vktTestCaseUtil.hpp"
#include <chrono>
#include <random>
#include <string>
#include <vector>
namespace vkt
{
namespace pipeline
{
namespace
{
using namespace vk;
using tcu::StringTemplate;
using tcu::TestCaseGroup;
using tcu::TestContext;
using tcu::TestStatus;
using ::std::array;
using ::std::string;
using ::std::vector;
/*--------------------------------------------------------------------*//*!
* Elements common to all test types
*//*--------------------------------------------------------------------*/
namespace test_common
{
static constexpr auto VK_NULL_HANDLE = DE_NULL;
using ::std::chrono::high_resolution_clock;
using ::std::chrono::microseconds;
using duration = high_resolution_clock::duration;
using UniquePipeline = Move<VkPipeline>;
using UniqueShaderModule = Move<VkShaderModule>;
/*--------------------------------------------------------------------*//*!
* \brief Paired Vulkan API result with elapsed duration
*//*--------------------------------------------------------------------*/
struct TimedResult
{
VkResult result;
duration elapsed;
};
/*--------------------------------------------------------------------*//*!
* \brief Validation function type output from vkCreate*Pipelines()
*
* \param result - VkResult returned from API call
* \param pipeliens - vector of pipelines created
* \param elapsed - high_resolution_clock::duration of time elapsed in API
* \param reason - output string to give the reason for failure
*
* \return QP_TEST_RESULT_PASS on success QP_TEST_RESULT_FAIL otherwise
*//*--------------------------------------------------------------------*/
using Validator = qpTestResult (*)(VkResult, const vector<UniquePipeline>&, duration, string&);
static constexpr size_t VALIDATOR_ARRAY_MAX = 4;
using ValidatorArray = ConstexprVector<Validator, VALIDATOR_ARRAY_MAX>;
/*--------------------------------------------------------------------*//*!
* \brief Run a loop of validation tests and return the result
*//*--------------------------------------------------------------------*/
template <typename pipelines_t, qpTestResult FAIL_RESULT = QP_TEST_RESULT_FAIL>
TestStatus validateResults(VkResult result,
const pipelines_t& pipelines,
duration elapsed,
const ValidatorArray& validators)
{
using de::contains;
static constexpr VkResult ALLOWED_RESULTS[] = {VK_SUCCESS, VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT};
string reason;
if (contains(DE_ARRAY_BEGIN(ALLOWED_RESULTS), DE_ARRAY_END(ALLOWED_RESULTS), result) == DE_FALSE)
{
static const StringTemplate ERROR_MSG = {"Pipeline creation returned an error result: ${0}"};
TCU_THROW(InternalError, ERROR_MSG.format(result).c_str());
}
for (const auto& validator : validators)
{
const auto qpResult = validator(result, pipelines, elapsed, reason);
if (qpResult != QP_TEST_RESULT_PASS)
{
return {qpResult, reason};
}
}
return TestStatus::pass("Test passed.");
}
/*--------------------------------------------------------------------*//*!
* \brief Generate an error if result does not match VK_RESULT
*//*--------------------------------------------------------------------*/
template <VkResult VK_RESULT, qpTestResult FAIL_RESULT = QP_TEST_RESULT_FAIL>
qpTestResult checkResult(VkResult result, const vector<UniquePipeline>&, duration, string& reason)
{
if (VK_RESULT != result)
{
static const StringTemplate ERROR_MSG = {"Got ${0}, Expected ${1}"};
reason = ERROR_MSG.format(result, VK_RESULT);
return FAIL_RESULT;
}
return QP_TEST_RESULT_PASS;
}
/*--------------------------------------------------------------------*//*!
* \brief Generate an error if pipeline[INDEX] is not valid
*//*--------------------------------------------------------------------*/
template <size_t INDEX, qpTestResult FAIL_RESULT = QP_TEST_RESULT_FAIL>
qpTestResult checkPipelineMustBeValid(VkResult, const vector<UniquePipeline>& pipelines, duration, string& reason)
{
if (pipelines.size() <= INDEX)
{
static const StringTemplate ERROR_MSG = {"Index ${0} is not in created pipelines (pipelines.size(): ${1})"};
TCU_THROW(TestError, ERROR_MSG.format(INDEX, pipelines.size()));
}
if (*pipelines[INDEX] == VK_NULL_HANDLE)
{
static const StringTemplate ERROR_MSG = {"pipelines[${0}] is not a valid VkPipeline object"};
reason = ERROR_MSG.format(INDEX);
return FAIL_RESULT;
}
return QP_TEST_RESULT_PASS;
}
/*--------------------------------------------------------------------*//*!
* \brief Generate an error if pipeline[INDEX] is not VK_NULL_HANDLE
*//*--------------------------------------------------------------------*/
template <size_t INDEX, qpTestResult FAIL_RESULT = QP_TEST_RESULT_FAIL>
qpTestResult checkPipelineMustBeNull(VkResult, const vector<UniquePipeline>& pipelines, duration, string& reason)
{
if (pipelines.size() <= INDEX)
{
static const StringTemplate ERROR_MSG = {"Index ${0} is not in created pipelines (pipelines.size(): ${1})"};
TCU_THROW(TestError, ERROR_MSG.format(INDEX, pipelines.size()));
}
if (*pipelines[INDEX] != VK_NULL_HANDLE)
{
static const StringTemplate ERROR_MSG = {"pipelines[${0}] is not VK_NULL_HANDLE"};
reason = ERROR_MSG.format(INDEX);
return FAIL_RESULT;
}
return QP_TEST_RESULT_PASS;
}
/*--------------------------------------------------------------------*//*!
* \brief Generate an error if any pipeline is valid after an early-return failure
*//*--------------------------------------------------------------------*/
template <size_t INDEX, qpTestResult FAIL_RESULT = QP_TEST_RESULT_FAIL>
qpTestResult checkPipelineNullAfterIndex(VkResult, const vector<UniquePipeline>& pipelines, duration, string& reason)
{
if (pipelines.size() <= INDEX)
{
static const StringTemplate ERROR_MSG = {"Index ${0} is not in created pipelines (pipelines.size(): ${1})"};
TCU_THROW(TestError, ERROR_MSG.format(INDEX, pipelines.size()));
}
if (pipelines.size() - 1 == INDEX)
{
static const StringTemplate ERROR_MSG = {"Index ${0} is the last pipeline, likely a malformed test case"};
TCU_THROW(TestError, ERROR_MSG.format(INDEX));
}
// Only have to iterate through if the requested index is null
if (*pipelines[INDEX] == VK_NULL_HANDLE)
{
for (size_t i = INDEX + 1; i < pipelines.size(); ++i)
{
if (*pipelines[i] != VK_NULL_HANDLE)
{
static const StringTemplate ERROR_MSG = {
"pipelines[${0}] is not VK_NULL_HANDLE after a explicit early return index"};
reason = ERROR_MSG.format(i);
return FAIL_RESULT;
}
}
}
return QP_TEST_RESULT_PASS;
}
/*--------------------------------------------------------------------*//*!
* Time limit constants
*//*--------------------------------------------------------------------*/
enum ElapsedTime
{
ELAPSED_TIME_INFINITE = microseconds{-1}.count(),
ELAPSED_TIME_IMMEDIATE = microseconds{500}.count(),
ELAPSED_TIME_FAST = microseconds{1000}.count()
};
/*--------------------------------------------------------------------*//*!
* \brief Generate an error if elapsed time exceeds MAX_TIME
*//*--------------------------------------------------------------------*/
template <ElapsedTime MAX_TIME, qpTestResult FAIL_RESULT = QP_TEST_RESULT_FAIL>
qpTestResult checkElapsedTime(VkResult, const vector<UniquePipeline>&, duration elapsed, string& reason)
{
#if defined(DE_DEBUG)
DE_UNREF(elapsed);
DE_UNREF(reason);
// In debug mode timing is not likely to be accurate
return QP_TEST_RESULT_PASS;
#else
using ::std::chrono::duration_cast;
static constexpr microseconds ALLOWED_TIME = microseconds{MAX_TIME};
if (elapsed > ALLOWED_TIME)
{
static const StringTemplate ERROR_MSG = {"pipeline creation took longer than ${0}us (actual time: ${1}us)"};
reason = ERROR_MSG.format(ALLOWED_TIME.count(), duration_cast<microseconds>(elapsed).count());
return FAIL_RESULT;
}
return QP_TEST_RESULT_PASS;
#endif
}
/*--------------------------------------------------------------------*//*!
* \brief Test case parameters
*//*--------------------------------------------------------------------*/
struct TestParams
{
enum CacheType
{
NO_CACHE = 0,
EXPLICIT_CACHE,
DERIVATIVE_HANDLE,
DERIVATIVE_INDEX
};
struct Iteration
{
static constexpr size_t MAX_VARIANTS = 4;
using Variant = VkPipelineCreateFlags;
using VariantArray = ConstexprVector<Variant, MAX_VARIANTS>;
static constexpr Variant NORMAL = 0;
static constexpr Variant NO_COMPILE = VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT_EXT;
static constexpr Variant EARLY_RETURN = NO_COMPILE | VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT_EXT;
static constexpr VariantArray SINGLE_NORMAL = VariantArray{NORMAL};
static constexpr VariantArray SINGLE_NOCOMPILE = VariantArray{NO_COMPILE};
static constexpr VariantArray BATCH_NOCOMPILE_COMPILE_NOCOMPILE = VariantArray{NO_COMPILE, NORMAL, NO_COMPILE};
static constexpr VariantArray BATCH_RETURN_COMPILE_NOCOMPILE = VariantArray{EARLY_RETURN, NORMAL, NO_COMPILE};
inline constexpr Iteration() : variants{}, validators{} {}
inline constexpr Iteration(const VariantArray& v, const ValidatorArray& f) : variants{v}, validators{f} {}
VariantArray variants;
ValidatorArray validators;
};
static constexpr size_t MAX_ITERATIONS = 4;
using IterationArray = ConstexprVector<Iteration, MAX_ITERATIONS>;
const char* name;
const char* description;
CacheType cacheType;
IterationArray iterations;
};
/*--------------------------------------------------------------------*//*!
* \brief Verify extension and feature support
*//*--------------------------------------------------------------------*/
void checkSupport(Context& context, const TestParams&)
{
static constexpr char EXT_NAME[] = "VK_EXT_pipeline_creation_cache_control";
if (!context.requireDeviceFunctionality(EXT_NAME))
{
TCU_THROW(NotSupportedError, "Extension 'VK_EXT_pipeline_creation_cache_control' is not supported");
}
const auto features = context.getPipelineCreationCacheControlFeaturesEXT();
if (features.pipelineCreationCacheControl == DE_FALSE)
{
TCU_THROW(NotSupportedError, "Feature 'pipelineCreationCacheControl' is not enabled");
}
}
/*--------------------------------------------------------------------*//*!
* \brief Generate a random floating point number as a string
*//*--------------------------------------------------------------------*/
float randomFloat()
{
#if !defined(DE_DEBUG)
static de::Random state = {::std::random_device{}()};
#else
static de::Random state = {0xDEADBEEF};
#endif
return state.getFloat();
}
/*--------------------------------------------------------------------*//*!
* \brief Get a string of VkResults from a vector
*//*--------------------------------------------------------------------*/
string getResultsString(const vector<VkResult>& results)
{
using ::std::ostringstream;
ostringstream output;
output << "results[" << results.size() << "]={ ";
if (!results.empty())
{
output << results[0];
}
for (size_t i = 1; i < results.size(); ++i)
{
output << ", " << results[i];
}
output << " }";
return output.str();
}
/*--------------------------------------------------------------------*//*!
* \brief Cast a pointer to an the expected SPIRV type
*//*--------------------------------------------------------------------*/
template <typename _t>
inline const deUint32* shader_cast(const _t* ptr)
{
return reinterpret_cast<const deUint32*>(ptr);
}
/*--------------------------------------------------------------------*//*!
* \brief Capture a container of Vulkan handles into Move<> types
*//*--------------------------------------------------------------------*/
template <typename input_container_t,
typename handle_t = typename input_container_t::value_type,
typename move_t = Move<handle_t>,
typename deleter_t = Deleter<handle_t>,
typename output_t = vector<move_t>>
output_t wrapHandles(const DeviceInterface& vk,
VkDevice device,
const input_container_t& input,
const VkAllocationCallbacks* allocator = DE_NULL)
{
using ::std::begin;
using ::std::end;
using ::std::transform;
auto output = output_t{};
output.resize(input.size());
struct Predicate
{
deleter_t deleter;
move_t operator()(handle_t v)
{
return (v != VK_NULL_HANDLE) ? move_t{check(v), deleter} : move_t{};
}
};
const auto wrapHandle = Predicate{deleter_t{vk, device, allocator}};
transform(begin(input), end(input), begin(output), wrapHandle);
return output;
}
/*--------------------------------------------------------------------*//*!
* \brief create vkPipelineCache for test params
*//*--------------------------------------------------------------------*/
Move<VkPipelineCache> createPipelineCache(const DeviceInterface& vk, VkDevice device, const TestParams& params)
{
if (params.cacheType != TestParams::EXPLICIT_CACHE)
{
return {};
}
static constexpr auto cacheInfo = VkPipelineCacheCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO, //sType
DE_NULL, //pNext
VkPipelineCacheCreateFlags{}, //flags
deUintptr{0}, //initialDataSize
DE_NULL //pInitialData
};
return createPipelineCache(vk, device, &cacheInfo);
}
/*--------------------------------------------------------------------*//*!
* \brief create VkPipelineLayout with descriptor sets from test parameters
*//*--------------------------------------------------------------------*/
Move<VkPipelineLayout> createPipelineLayout(const DeviceInterface& vk,
VkDevice device,
const vector<VkDescriptorSetLayout>& setLayouts,
const TestParams&)
{
const auto layoutCreateInfo = VkPipelineLayoutCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineLayoutCreateFlags{}, // flags
static_cast<deUint32>(setLayouts.size()), // setLayoutCount
setLayouts.data(), // pSetLayouts
deUint32{0u}, // pushConstantRangeCount
DE_NULL, // pPushConstantRanges
};
return createPipelineLayout(vk, device, &layoutCreateInfo);
}
/*--------------------------------------------------------------------*//*!
* \brief create basic VkPipelineLayout from test parameters
*//*--------------------------------------------------------------------*/
Move<VkPipelineLayout> createPipelineLayout(const DeviceInterface& vk, VkDevice device, const TestParams&)
{
static constexpr auto layoutCreateInfo = VkPipelineLayoutCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineLayoutCreateFlags{}, // flags
deUint32{0u}, // setLayoutCount
DE_NULL, // pSetLayouts
deUint32{0u}, // pushConstantRangeCount
DE_NULL, // pPushConstantRanges
};
return createPipelineLayout(vk, device, &layoutCreateInfo);
}
/*--------------------------------------------------------------------*//*!
* \brief Create array of shader modules
*//*--------------------------------------------------------------------*/
vector<UniqueShaderModule> createShaderModules(const DeviceInterface& vk,
VkDevice device,
const BinaryCollection& collection,
const vector<const char*>& names)
{
auto output = vector<UniqueShaderModule>{};
output.reserve(names.size());
for (const auto& name : names)
{
const auto& binary = collection.get(name);
const auto createInfo = VkShaderModuleCreateInfo{
VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO, // sType
DE_NULL, // pNext
VkShaderModuleCreateFlags{}, // flags
binary.getSize(), // codeSize
shader_cast(binary.getBinary()) // pCode
};
output.push_back(createShaderModule(vk, device, &createInfo));
}
return output;
}
/*--------------------------------------------------------------------*//*!
* \brief Create array of shader binding stages
*//*--------------------------------------------------------------------*/
vector<VkPipelineShaderStageCreateInfo> createShaderStages(const vector<Move<VkShaderModule>>& modules,
const vector<VkShaderStageFlagBits>& stages)
{
DE_ASSERT(modules.size() == stages.size());
auto output = vector<VkPipelineShaderStageCreateInfo>{};
output.reserve(modules.size());
int i = 0;
for (const auto& module : modules)
{
const auto stageInfo = VkPipelineShaderStageCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineShaderStageCreateFlags{}, // flags
stages[i++], // stage
*module, // module
"main", // pName
DE_NULL // pSpecializationInfo
};
output.push_back(stageInfo);
}
return output;
}
} // namespace test_common
/*--------------------------------------------------------------------*//*!
* \brief Graphics pipeline specific testing
*//*--------------------------------------------------------------------*/
namespace graphics_tests
{
using namespace test_common;
/*--------------------------------------------------------------------*//*!
* \brief Common graphics pipeline create info initialization
*//*--------------------------------------------------------------------*/
VkGraphicsPipelineCreateInfo getPipelineCreateInfoCommon()
{
static constexpr auto VERTEX_BINDING = VkVertexInputBindingDescription{
deUint32{0u}, // binding
sizeof(float[4]), // stride
VK_VERTEX_INPUT_RATE_VERTEX // inputRate
};
static constexpr auto VERTEX_ATTRIBUTE = VkVertexInputAttributeDescription{
deUint32{0u}, // location
deUint32{0u}, // binding
VK_FORMAT_R32G32B32A32_SFLOAT, // format
deUint32{0u} // offset
};
static constexpr auto VERTEX_INPUT_STATE = VkPipelineVertexInputStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineVertexInputStateCreateFlags{}, // flags
deUint32{1u}, // vertexBindingDescriptionCount
&VERTEX_BINDING, // pVertexBindingDescriptions
deUint32{1u}, // vertexAttributeDescriptionCount
&VERTEX_ATTRIBUTE // pVertexAttributeDescriptions
};
static constexpr auto IA_STATE = VkPipelineInputAssemblyStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineInputAssemblyStateCreateFlags{}, // flags
VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST, // topology
VK_TRUE // primitiveRestartEnable
};
static constexpr auto TESSALATION_STATE = VkPipelineTessellationStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineTessellationStateCreateFlags{}, // flags
deUint32{0u} // patchControlPoints
};
static constexpr auto VIEWPORT = VkViewport{
0.f, // x
0.f, // y
1.f, // width
1.f, // height
0.f, // minDepth
1.f // maxDept
};
static constexpr auto SCISSOR_RECT = VkRect2D{
{0, 0}, // offset
{256, 256} // extent
};
static constexpr auto VIEWPORT_STATE = VkPipelineViewportStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineViewportStateCreateFlags{}, // flags
deUint32{1u}, // viewportCount
&VIEWPORT, // pViewports
deUint32{1u}, // scissorCount
&SCISSOR_RECT // pScissors
};
static constexpr auto RASTERIZATION_STATE = VkPipelineRasterizationStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineRasterizationStateCreateFlags{}, // flags
VK_FALSE, // depthClampEnable
VK_TRUE, // rasterizerDiscardEnable
VK_POLYGON_MODE_FILL, // polygonMode
VK_CULL_MODE_NONE, // cullMode
VK_FRONT_FACE_CLOCKWISE, // frontFace
VK_FALSE, // depthBiasEnable
0.f, // depthBiasConstantFactor
0.f, // depthBiasClamp
0.f, // depthBiasSlopeFactor
1.f // lineWidth
};
static constexpr auto SAMPLE_MASK = VkSampleMask{};
static constexpr auto MULTISAMPLE_STATE = VkPipelineMultisampleStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineMultisampleStateCreateFlags{}, // flags
VK_SAMPLE_COUNT_1_BIT, // rasterizationSamples
VK_FALSE, // sampleShadingEnable
0.f, // minSampleShading
&SAMPLE_MASK, // pSampleMask
VK_FALSE, // alphaToCoverageEnable
VK_FALSE // alphaToOneEnable
};
static constexpr auto STENCIL_OP_STATE = VkStencilOpState{
VK_STENCIL_OP_ZERO, // failOp
VK_STENCIL_OP_ZERO, // passOp
VK_STENCIL_OP_ZERO, // depthFailOp
VK_COMPARE_OP_ALWAYS, // compareOp
deUint32{0u}, // compareMask
deUint32{0u}, // writeMask
deUint32{0u} // reference
};
static constexpr auto DEPTH_STENCIL_STATE = VkPipelineDepthStencilStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineDepthStencilStateCreateFlags{}, // flags
VK_FALSE, // depthTestEnable
VK_FALSE, // depthWriteEnable
VK_COMPARE_OP_ALWAYS, // depthCompareOp
VK_FALSE, // depthBoundsTestEnable
VK_FALSE, // stencilTestEnable
STENCIL_OP_STATE, // front
STENCIL_OP_STATE, // back
0.f, // minDepthBounds
1.f // maxDepthBounds
};
static constexpr auto COLOR_FLAGS_ALL = VkColorComponentFlags{VK_COLOR_COMPONENT_R_BIT | VK_COLOR_COMPONENT_G_BIT |
VK_COLOR_COMPONENT_B_BIT | VK_COLOR_COMPONENT_A_BIT};
static constexpr auto COLOR_BLEND_ATTACH_STATE = VkPipelineColorBlendAttachmentState{
VK_FALSE, // blendEnable
VK_BLEND_FACTOR_ONE, // srcColorBlendFactor
VK_BLEND_FACTOR_ZERO, // dstColorBlendFactor
VK_BLEND_OP_ADD, // colorBlendOp
VK_BLEND_FACTOR_ONE, // srcAlphaBlendFactor
VK_BLEND_FACTOR_ZERO, // dstAlphaBlendFactor
VK_BLEND_OP_ADD, // alphaBlendOp
COLOR_FLAGS_ALL // colorWriteMask
};
static constexpr auto COLOR_BLEND_STATE = VkPipelineColorBlendStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineColorBlendStateCreateFlags{}, // flags
VK_FALSE, // logicOpEnable
VK_LOGIC_OP_SET, // logicOp
deUint32{1u}, // attachmentCount
&COLOR_BLEND_ATTACH_STATE, // pAttachments
{0.f, 0.f, 0.f, 0.f} // blendConstants[4]
};
static constexpr auto DYNAMIC_STATE = VkPipelineDynamicStateCreateInfo{
VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO, // sType;
DE_NULL, // pNext;
VkPipelineDynamicStateCreateFlags{}, // flags;
deUint32{0u}, // dynamicStateCount;
DE_NULL // pDynamicStates;
};
return VkGraphicsPipelineCreateInfo{
VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineCreateFlags{}, // flags
deUint32{0u}, // stageCount
DE_NULL, // pStages
&VERTEX_INPUT_STATE, // pVertexInputState
&IA_STATE, // pInputAssemblyState
&TESSALATION_STATE, // pTessellationState
&VIEWPORT_STATE, // pViewportState
&RASTERIZATION_STATE, // pRasterizationState
&MULTISAMPLE_STATE, // pMultisampleState
&DEPTH_STENCIL_STATE, // pDepthStencilState
&COLOR_BLEND_STATE, // pColorBlendState
&DYNAMIC_STATE, // pDynamicState
VK_NULL_HANDLE, // layout
VK_NULL_HANDLE, // renderPass
deUint32{0u}, // subpass
VK_NULL_HANDLE, // basePipelineHandle
deInt32{-1} // basePipelineIndex
};
}
/*--------------------------------------------------------------------*//*!
* \brief create VkGraphicsPipelineCreateInfo structs from test iteration
*//*--------------------------------------------------------------------*/
vector<VkGraphicsPipelineCreateInfo> createPipelineCreateInfos(const TestParams::Iteration& iteration,
const VkGraphicsPipelineCreateInfo& base,
VkPipeline basePipeline,
const TestParams& testParameter)
{
auto output = vector<VkGraphicsPipelineCreateInfo>{};
output.reserve(iteration.variants.size());
deInt32 count = 0;
deInt32 basePipelineIndex = -1;
for (VkPipelineCreateFlags flags : iteration.variants)
{
const auto curIndex = count++;
auto createInfo = base;
if (testParameter.cacheType == TestParams::DERIVATIVE_INDEX)
{
if (flags & VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT_EXT)
{
if (basePipelineIndex != -1)
{
flags |= VK_PIPELINE_CREATE_DERIVATIVE_BIT;
}
}
else
{
flags |= VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT;
if (basePipelineIndex == -1)
{
basePipelineIndex = curIndex;
}
}
}
createInfo.flags = flags;
createInfo.basePipelineHandle = basePipeline;
createInfo.basePipelineIndex = basePipelineIndex;
output.push_back(createInfo);
}
return output;
}
/*--------------------------------------------------------------------*//*!
* \brief create VkRenderPass object for Graphics test
*//*--------------------------------------------------------------------*/
Move<VkRenderPass> createRenderPass(const DeviceInterface& vk, VkDevice device, const TestParams&)
{
static constexpr auto COLOR_FORMAT = VK_FORMAT_R8G8B8A8_UNORM;
static constexpr auto COLOR_ATTACHMENT_REF = VkAttachmentReference{
deUint32{0u}, // attachment
VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL // layout
};
static constexpr auto SUBPASS = VkSubpassDescription{
VkSubpassDescriptionFlags{}, // flags
VK_PIPELINE_BIND_POINT_GRAPHICS, // pipelineBindPoint
deUint32{0u}, // inputAttachmentCount
DE_NULL, // pInputAttachments
deUint32{1u}, // colorAttachmentCount
&COLOR_ATTACHMENT_REF, // pColorAttachments
DE_NULL, // pResolveAttachments
DE_NULL, // pDepthStencilAttachment
deUint32{0u}, // preserveAttachmentCount
DE_NULL // pPreserveAttachments
};
static constexpr auto COLOR_ATTACHMENT = VkAttachmentDescription{
VkAttachmentDescriptionFlags{}, // flags
COLOR_FORMAT, // format
VK_SAMPLE_COUNT_1_BIT, // samples
VK_ATTACHMENT_LOAD_OP_CLEAR, // loadOp
VK_ATTACHMENT_STORE_OP_STORE, // storeOp
VK_ATTACHMENT_LOAD_OP_DONT_CARE, // stencilLoadOp
VK_ATTACHMENT_STORE_OP_DONT_CARE, // stencilStoreOp
VK_IMAGE_LAYOUT_UNDEFINED, // initialLayout
VK_IMAGE_LAYOUT_PRESENT_SRC_KHR // finalLayout
};
static constexpr auto RENDER_PASS_CREATE_INFO = VkRenderPassCreateInfo{
VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO, // sType
DE_NULL, // pNext
VkRenderPassCreateFlags{}, // flags
deUint32{1u}, // attachmentCount
&COLOR_ATTACHMENT, // pAttachments
deUint32{1u}, // subpassCount
&SUBPASS, // pSubpasses
deUint32{0u}, // dependencyCount
DE_NULL // pDependencies
};
return createRenderPass(vk, device, &RENDER_PASS_CREATE_INFO);
}
/*--------------------------------------------------------------------*//*!
* \brief Initialize shader programs
*//*--------------------------------------------------------------------*/
void initPrograms(SourceCollections& dst, const TestParams&)
{
using ::glu::FragmentSource;
using ::glu::VertexSource;
// Vertex Shader
static const StringTemplate VS_TEXT = {"#version 310 es\n"
"layout(location = 0) in vec4 position;\n"
"layout(location = 0) out vec3 vertColor;\n"
"void main (void)\n"
"{\n"
" gl_Position = position;\n"
" vertColor = vec3(${0}, ${1}, ${2});\n"
"}\n"};
// Fragment Shader
static const StringTemplate FS_TEXT = {"#version 310 es\n"
"precision highp float;\n"
"layout(location = 0) in vec3 vertColor;\n"
"layout(location = 0) out vec4 outColor;\n"
"void main (void)\n"
"{\n"
" const vec3 fragColor = vec3(${0}, ${1}, ${2});\n"
" outColor = vec4((fragColor + vertColor) * 0.5, 1.0);\n"
"}\n"};
dst.glslSources.add("vertex") << VertexSource{VS_TEXT.format(randomFloat(), randomFloat(), randomFloat())};
dst.glslSources.add("fragment") << FragmentSource{FS_TEXT.format(randomFloat(), randomFloat(), randomFloat())};
}
/*--------------------------------------------------------------------*//*!
* \brief return both result and elapsed time from pipeline creation
*//*--------------------------------------------------------------------*/
template <typename create_infos_t, typename pipelines_t>
TimedResult timePipelineCreation(const DeviceInterface& vk,
const VkDevice device,
const VkPipelineCache cache,
const create_infos_t& createInfos,
pipelines_t& pipelines,
const VkAllocationCallbacks* pAllocator = DE_NULL)
{
DE_ASSERT(createInfos.size() <= pipelines.size());
const auto timeStart = high_resolution_clock::now();
const auto result = vk.createGraphicsPipelines(
device, cache, static_cast<deUint32>(createInfos.size()), createInfos.data(), pAllocator, pipelines.data());
const auto elapsed = high_resolution_clock::now() - timeStart;
return {result, elapsed};
}
/*--------------------------------------------------------------------*//*!
* \brief Test instance function
*//*--------------------------------------------------------------------*/
TestStatus testInstance(Context& context, const TestParams& testParameter)
{
const auto& vk = context.getDeviceInterface();
const auto device = context.getDevice();
const auto pipelineCache = createPipelineCache(vk, device, testParameter);
const auto layout = createPipelineLayout(vk, device, testParameter);
const auto renderPass = createRenderPass(vk, device, testParameter);
const auto modules = createShaderModules(vk, device, context.getBinaryCollection(), {"vertex", "fragment"});
const auto shaderStages = createShaderStages(modules, {VK_SHADER_STAGE_VERTEX_BIT, VK_SHADER_STAGE_FRAGMENT_BIT});
// Placeholder for base pipeline if using cacheType == DERIVATIVE_HANDLE
auto basePipeline = UniquePipeline{};
auto baseCreateInfo = getPipelineCreateInfoCommon();
baseCreateInfo.layout = layout.get();
baseCreateInfo.renderPass = renderPass.get();
baseCreateInfo.stageCount = static_cast<deUint32>(shaderStages.size());
baseCreateInfo.pStages = shaderStages.data();
auto results = vector<VkResult>{};
results.reserve(testParameter.iterations.size());
for (const auto& i : testParameter.iterations)
{
const auto createInfos = createPipelineCreateInfos(i, baseCreateInfo, basePipeline.get(), testParameter);
auto created = vector<VkPipeline>{};
created.resize(createInfos.size());
const auto timedResult = timePipelineCreation(vk, device, pipelineCache.get(), createInfos, created);
auto pipelines = wrapHandles(vk, device, created);
const auto status = validateResults(timedResult.result, pipelines, timedResult.elapsed, i.validators);
if (status.getCode() != QP_TEST_RESULT_PASS)
{
return status;
}
if ((testParameter.cacheType == TestParams::DERIVATIVE_HANDLE) && (*basePipeline == VK_NULL_HANDLE))
{
for (auto& pipeline : pipelines)
{
if (*pipeline != VK_NULL_HANDLE)
{
basePipeline = pipeline;
break;
}
}
}
results.push_back(timedResult.result);
}
static const StringTemplate PASS_MSG = {"Test Passed. ${0}"};
return TestStatus::pass(PASS_MSG.format(getResultsString(results)));
}
} // namespace graphics_tests
/*--------------------------------------------------------------------*//*!
* \brief Compute pipeline specific testing
*//*--------------------------------------------------------------------*/
namespace compute_tests
{
using namespace test_common;
/*--------------------------------------------------------------------*//*!
* \brief create VkComputePipelineCreateInfo structs from test iteration
*//*--------------------------------------------------------------------*/
vector<VkComputePipelineCreateInfo> createPipelineCreateInfos(const TestParams::Iteration& iteration,
const VkComputePipelineCreateInfo& base,
VkPipeline basePipeline,
const TestParams& testParameter)
{
auto output = vector<VkComputePipelineCreateInfo>{};
output.reserve(iteration.variants.size());
deInt32 count = 0;
deInt32 basePipelineIndex = -1;
for (VkPipelineCreateFlags flags : iteration.variants)
{
const auto curIndex = count++;
auto createInfo = base;
if (testParameter.cacheType == TestParams::DERIVATIVE_INDEX)
{
if (flags & VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT_EXT)
{
if (basePipelineIndex != -1)
{
flags |= VK_PIPELINE_CREATE_DERIVATIVE_BIT;
}
}
else
{
flags |= VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT;
if (basePipelineIndex == -1)
{
basePipelineIndex = curIndex;
}
}
}
createInfo.flags = flags;
createInfo.basePipelineHandle = basePipeline;
createInfo.basePipelineIndex = basePipelineIndex;
output.push_back(createInfo);
}
return output;
}
/*--------------------------------------------------------------------*//*!
* \brief create compute descriptor set layout
*//*--------------------------------------------------------------------*/
Move<VkDescriptorSetLayout> createDescriptorSetLayout(const DeviceInterface& vk, VkDevice device, const TestParams&)
{
static constexpr auto DESCRIPTOR_SET_LAYOUT_BINDING = VkDescriptorSetLayoutBinding{
deUint32{0u}, // binding
VK_DESCRIPTOR_TYPE_STORAGE_BUFFER, // descriptorType
deUint32{1u}, // descriptorCount
VK_SHADER_STAGE_COMPUTE_BIT, // stageFlags
DE_NULL // pImmutableSamplers
};
static constexpr auto DESCRIPTOR_SET_LAYOUT_CREATE_INFO = VkDescriptorSetLayoutCreateInfo{
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO, // sType
DE_NULL, // pNext
VkDescriptorSetLayoutCreateFlags{}, // flags
deUint32{1u}, // bindingCount
&DESCRIPTOR_SET_LAYOUT_BINDING // pBindings
};
return createDescriptorSetLayout(vk, device, &DESCRIPTOR_SET_LAYOUT_CREATE_INFO);
}
/*--------------------------------------------------------------------*//*!
* \brief Initialize shader programs
*//*--------------------------------------------------------------------*/
void initPrograms(SourceCollections& dst, const TestParams&)
{
using ::glu::ComputeSource;
static const StringTemplate CS_TEXT = {"#version 450\n"
"precision highp float;\n"
"layout (local_size_x = 64, local_size_y = 1, local_size_z = 1) in;\n"
"layout (std140, binding = 0) buffer buf { vec3 data[]; };\n"
"void main (void)\n"
"{\n"
" data[gl_GlobalInvocationID.x] = vec3(${0}, ${1}, ${2});\n"
"}\n"};
dst.glslSources.add("compute")
<< ComputeSource{CS_TEXT.format(randomFloat(), randomFloat(), randomFloat())};
}
/*--------------------------------------------------------------------*//*!
* \brief return both result and elapsed time from pipeline creation
*//*--------------------------------------------------------------------*/
template <typename create_infos_t, typename pipelines_t>
TimedResult timePipelineCreation(const DeviceInterface& vk,
const VkDevice device,
const VkPipelineCache cache,
const create_infos_t& createInfos,
pipelines_t& pipelines,
const VkAllocationCallbacks* pAllocator = DE_NULL)
{
DE_ASSERT(createInfos.size() <= pipelines.size());
const auto timeStart = high_resolution_clock::now();
const auto result = vk.createComputePipelines(
device, cache, static_cast<deUint32>(createInfos.size()), createInfos.data(), pAllocator, pipelines.data());
const auto elapsed = high_resolution_clock::now() - timeStart;
return {result, elapsed};
}
/*--------------------------------------------------------------------*//*!
* \brief Test instance function
*//*--------------------------------------------------------------------*/
TestStatus testInstance(Context& context, const TestParams& testParameter)
{
const auto& vk = context.getDeviceInterface();
const auto device = context.getDevice();
const auto pipelineCache = createPipelineCache(vk, device, testParameter);
const auto descriptorSetLayout = createDescriptorSetLayout(vk, device, testParameter);
const auto pipelineLayout = createPipelineLayout(vk, device, {descriptorSetLayout.get()}, testParameter);
const auto modules = createShaderModules(vk, device, context.getBinaryCollection(), {"compute"});
const auto shaderStages = createShaderStages(modules, {VK_SHADER_STAGE_COMPUTE_BIT});
// Placeholder for base pipeline if using cacheType == DERIVATIVE_HANDLE
auto basePipeline = UniquePipeline{};
const auto baseCreateInfo = VkComputePipelineCreateInfo{
VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO, // sType
DE_NULL, // pNext
VkPipelineCreateFlags{}, // flags
shaderStages[0], // stage
pipelineLayout.get(), // layout
VK_NULL_HANDLE, // basePipelineHandle
deInt32{-1} // basePipelineIndex
};
auto results = vector<VkResult>{};
results.reserve(testParameter.iterations.size());
for (const auto& i : testParameter.iterations)
{
const auto createInfos = createPipelineCreateInfos(i, baseCreateInfo, basePipeline.get(), testParameter);
auto created = vector<VkPipeline>{};
created.resize(createInfos.size());
const auto timedResult = timePipelineCreation(vk, device, pipelineCache.get(), createInfos, created);
auto pipelines = wrapHandles(vk, device, created);
const auto status = validateResults(timedResult.result, pipelines, timedResult.elapsed, i.validators);
if (status.getCode() != QP_TEST_RESULT_PASS)
{
return status;
}
if ((testParameter.cacheType == TestParams::DERIVATIVE_HANDLE) && (*basePipeline == VK_NULL_HANDLE))
{
for (auto& pipeline : pipelines)
{
if (*pipeline != VK_NULL_HANDLE)
{
basePipeline = pipeline;
break;
}
}
}
results.push_back(timedResult.result);
}
static const StringTemplate PASS_MSG = {"Test Passed. ${0}"};
return TestStatus::pass(PASS_MSG.format(getResultsString(results)));
}
} // namespace compute_tests
using namespace test_common;
// Disable formatting on this next block for readability
// clang-format off
/*--------------------------------------------------------------------*//*!
* \brief Duplicate single pipeline recreation with explicit caching
*//*--------------------------------------------------------------------*/
static constexpr TestParams DUPLICATE_SINGLE_RECREATE_EXPLICIT_CACHING =
{
"duplicate_single_recreate_explicit_caching",
"Duplicate single pipeline recreation with explicit caching",
TestParams::EXPLICIT_CACHE,
TestParams::IterationArray
{
TestParams::Iteration{
// Iteration [0]: Force compilation of pipeline
TestParams::Iteration::SINGLE_NORMAL,
ValidatorArray{
// Fail if result is not VK_SUCCESS
checkResult<VK_SUCCESS>,
// Fail if pipeline is not valid
checkPipelineMustBeValid<0>
}
},
TestParams::Iteration{
// Iteration [1]: Request compilation of same pipeline without compile
TestParams::Iteration::SINGLE_NOCOMPILE,
ValidatorArray{
// Warn if result is not VK_SUCCESS
checkResult<VK_SUCCESS, QP_TEST_RESULT_COMPATIBILITY_WARNING>,
// Warn if pipeline is not valid
checkPipelineMustBeValid<0, QP_TEST_RESULT_COMPATIBILITY_WARNING>,
// Warn if pipeline took too long
checkElapsedTime<ELAPSED_TIME_FAST, QP_TEST_RESULT_QUALITY_WARNING>
}
}
}
};
/*--------------------------------------------------------------------*//*!
* \brief Duplicate single pipeline recreation with no explicit cache
*//*--------------------------------------------------------------------*/
static constexpr TestParams DUPLICATE_SINGLE_RECREATE_NO_CACHING =
{
"duplicate_single_recreate_no_caching",
"Duplicate single pipeline recreation with no explicit cache",
TestParams::NO_CACHE,
TestParams::IterationArray{
TestParams::Iteration{
// Iteration [0]: Force compilation of pipeline
TestParams::Iteration::SINGLE_NORMAL,
ValidatorArray{
// Fail if result is not VK_SUCCESS
checkResult<VK_SUCCESS>,
// Fail if pipeline is not valid
checkPipelineMustBeValid<0>
}
},
TestParams::Iteration{
// Iteration [1]: Request compilation of same pipeline without compile
TestParams::Iteration::SINGLE_NOCOMPILE,
ValidatorArray{
// Warn if pipeline took too long
checkElapsedTime<ELAPSED_TIME_FAST, QP_TEST_RESULT_QUALITY_WARNING>
}
}
}
};
/*--------------------------------------------------------------------*//*!
* \brief Duplicate single pipeline recreation using derivative pipelines
*//*--------------------------------------------------------------------*/
static constexpr TestParams DUPLICATE_SINGLE_RECREATE_DERIVATIVE =
{
"duplicate_single_recreate_derivative",
"Duplicate single pipeline recreation using derivative pipelines",
TestParams::DERIVATIVE_HANDLE,
TestParams::IterationArray{
TestParams::Iteration{
// Iteration [0]: Force compilation of pipeline
TestParams::Iteration::SINGLE_NORMAL,
ValidatorArray{
// Fail if result is not VK_SUCCESS
checkResult<VK_SUCCESS>,
// Fail if pipeline is not valid
checkPipelineMustBeValid<0>
}
},
TestParams::Iteration{
// Iteration [1]: Request compilation of same pipeline without compile
TestParams::Iteration::SINGLE_NOCOMPILE,
ValidatorArray{
// Warn if pipeline took too long
checkElapsedTime<ELAPSED_TIME_FAST, QP_TEST_RESULT_QUALITY_WARNING>
}
}
}
};
/*--------------------------------------------------------------------*//*!
* \brief Single creation of never before seen pipeline without compile
*//*--------------------------------------------------------------------*/
static constexpr TestParams SINGLE_PIPELINE_NO_COMPILE =
{
"single_pipeline_no_compile",
"Single creation of never before seen pipeline without compile",
TestParams::NO_CACHE,
TestParams::IterationArray{
TestParams::Iteration{
TestParams::Iteration::SINGLE_NOCOMPILE,
ValidatorArray{
// Warn if pipeline took too long
checkElapsedTime<ELAPSED_TIME_IMMEDIATE, QP_TEST_RESULT_QUALITY_WARNING>
}
}
}
};
/*--------------------------------------------------------------------*//*!
* \brief Batch creation of duplicate pipelines with explicit caching
*//*--------------------------------------------------------------------*/
static constexpr TestParams DUPLICATE_BATCH_PIPELINES_EXPLICIT_CACHE =
{
"duplicate_batch_pipelines_explicit_cache",
"Batch creation of duplicate pipelines with explicit caching",
TestParams::EXPLICIT_CACHE,
TestParams::IterationArray{
TestParams::Iteration{
TestParams::Iteration::BATCH_NOCOMPILE_COMPILE_NOCOMPILE,
ValidatorArray{
// Fail if pipeline[1] is not valid
checkPipelineMustBeValid<1>,
// Warn if result is not VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT
checkResult<VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT, QP_TEST_RESULT_COMPATIBILITY_WARNING>,
// Warn if pipelines[0] is not VK_NULL_HANDLE
checkPipelineMustBeNull<0, QP_TEST_RESULT_COMPATIBILITY_WARNING>,
// Warn if pipelines[2] is not valid
checkPipelineMustBeValid<2, QP_TEST_RESULT_COMPATIBILITY_WARNING>
}
}
}
};
/*--------------------------------------------------------------------*//*!
* \brief Batch creation of duplicate pipelines with no caching
*//*--------------------------------------------------------------------*/
static constexpr TestParams DUPLICATE_BATCH_PIPELINES_NO_CACHE =
{
"duplicate_batch_pipelines_no_cache",
"Batch creation of duplicate pipelines with no caching",
TestParams::NO_CACHE,
TestParams::IterationArray{
TestParams::Iteration{
TestParams::Iteration::BATCH_NOCOMPILE_COMPILE_NOCOMPILE,
ValidatorArray{
// Fail if pipeline[1] is not valid
checkPipelineMustBeValid<1>,
// Warn if result is not VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT
checkResult<VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT, QP_TEST_RESULT_COMPATIBILITY_WARNING>,
// Warn if pipelines[0] is not VK_NULL_HANDLE
checkPipelineMustBeNull<0, QP_TEST_RESULT_COMPATIBILITY_WARNING>
}
}
}
};
/*--------------------------------------------------------------------*//*!
* \brief Batch creation of duplicate pipelines with derivative pipeline index
*//*--------------------------------------------------------------------*/
static constexpr TestParams DUPLICATE_BATCH_PIPELINES_DERIVATIVE_INDEX =
{
"duplicate_batch_pipelines_derivative_index",
"Batch creation of duplicate pipelines with derivative pipeline index",
TestParams::DERIVATIVE_INDEX,
TestParams::IterationArray{
TestParams::Iteration{
TestParams::Iteration::BATCH_NOCOMPILE_COMPILE_NOCOMPILE,
ValidatorArray{
// Fail if pipeline[1] is not valid
checkPipelineMustBeValid<1>,
// Warn if result is not VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT
checkResult<VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT, QP_TEST_RESULT_COMPATIBILITY_WARNING>,
// Warn if pipelines[0] is not VK_NULL_HANDLE
checkPipelineMustBeNull<0, QP_TEST_RESULT_COMPATIBILITY_WARNING>
}
}
}
};
/*--------------------------------------------------------------------*//*!
* \brief Batch creation of pipelines with early return
*//*--------------------------------------------------------------------*/
static constexpr TestParams BATCH_PIPELINES_EARLY_RETURN =
{
"batch_pipelines_early_return",
"Batch creation of pipelines with early return",
TestParams::NO_CACHE,
TestParams::IterationArray{
TestParams::Iteration{
TestParams::Iteration::BATCH_RETURN_COMPILE_NOCOMPILE,
ValidatorArray{
// fail if a valid pipeline follows the early-return failure
checkPipelineNullAfterIndex<0>,
// Warn if return was not immediate
checkElapsedTime<ELAPSED_TIME_IMMEDIATE, QP_TEST_RESULT_QUALITY_WARNING>,
// Warn if pipelines[0] is not VK_NULL_HANDLE
checkPipelineMustBeNull<0, QP_TEST_RESULT_COMPATIBILITY_WARNING>,
// Warn if result is not VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT
checkResult<VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT, QP_TEST_RESULT_COMPATIBILITY_WARNING>
}
}
}
};
/*--------------------------------------------------------------------*//*!
* \brief Full array of test cases
*//*--------------------------------------------------------------------*/
static constexpr TestParams TEST_CASES[] =
{
SINGLE_PIPELINE_NO_COMPILE,
BATCH_PIPELINES_EARLY_RETURN,
DUPLICATE_SINGLE_RECREATE_EXPLICIT_CACHING,
DUPLICATE_SINGLE_RECREATE_NO_CACHING,
DUPLICATE_SINGLE_RECREATE_DERIVATIVE,
DUPLICATE_BATCH_PIPELINES_EXPLICIT_CACHE,
DUPLICATE_BATCH_PIPELINES_NO_CACHE,
DUPLICATE_BATCH_PIPELINES_DERIVATIVE_INDEX
};
// clang-format on
/*--------------------------------------------------------------------*//*!
* \brief Variadic version of de::newMovePtr
*//*--------------------------------------------------------------------*/
template <typename T, typename... args_t>
inline de::MovePtr<T> newMovePtr(args_t&&... args)
{
return de::MovePtr<T>(new T(::std::forward<args_t>(args)...));
}
/*--------------------------------------------------------------------*//*!
* \brief Make test group consisting of graphics pipeline tests
*//*--------------------------------------------------------------------*/
void addGraphicsPipelineTests(TestCaseGroup& group)
{
using namespace graphics_tests;
auto tests = newMovePtr<TestCaseGroup>(
group.getTestContext(), "graphics_pipelines", "Test pipeline creation cache control with graphics pipelines");
for (const auto& params : TEST_CASES)
{
addFunctionCaseWithPrograms<const TestParams&>(
tests.get(), params.name, params.description, checkSupport, initPrograms, testInstance, params);
}
group.addChild(tests.release());
}
/*--------------------------------------------------------------------*//*!
* \brief Make test group consisting of compute pipeline tests
*//*--------------------------------------------------------------------*/
void addComputePipelineTests(TestCaseGroup& group)
{
using namespace compute_tests;
auto tests = newMovePtr<TestCaseGroup>(
group.getTestContext(), "compute_pipelines", "Test pipeline creation cache control with compute pipelines");
for (const auto& params : TEST_CASES)
{
addFunctionCaseWithPrograms<const TestParams&>(
tests.get(), params.name, params.description, checkSupport, initPrograms, testInstance, params);
}
group.addChild(tests.release());
}
} // namespace
/*--------------------------------------------------------------------*//*!
* \brief Make pipeline creation cache control test group
*//*--------------------------------------------------------------------*/
TestCaseGroup* createCacheControlTests(TestContext& testCtx)
{
auto tests = newMovePtr<TestCaseGroup>(testCtx, "creation_cache_control", "pipeline creation cache control tests");
addGraphicsPipelineTests(*tests);
addComputePipelineTests(*tests);
return tests.release();
}
} // namespace pipeline
} // namespace vkt
|