This repository has been archived by the owner on Mar 24, 2021. It is now read-only.
forked from StanfordLegion/legion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
executable file
·917 lines (811 loc) · 38 KB
/
test.py
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
#!/usr/bin/env python
# Copyright 2018 Stanford University
#
# 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.
#
from __future__ import print_function
import argparse, datetime, glob, json, multiprocessing, os, platform, shutil, subprocess, sys, traceback, tempfile
# Find physical core count of the machine.
if platform.system() == 'Linux':
lines = subprocess.check_output(['lscpu', '--parse=core'])
physical_cores = len(set(line for line in lines.strip().split('\n')
if not line.startswith('#')))
elif platform.system() == 'Darwin':
physical_cores = int(
subprocess.check_output(['sysctl', '-n', 'hw.physicalcpu']))
else:
raise Exception('Unknown platform: %s' % platform.system())
# Choose a reasonable number of application cores given the
# available physical cores.
app_cores = max(physical_cores - 2, 1)
legion_cxx_tests = [
# Tutorial
['tutorial/00_hello_world/hello_world', []],
['tutorial/01_tasks_and_futures/tasks_and_futures', []],
['tutorial/02_index_tasks/index_tasks', []],
['tutorial/03_global_vars/global_vars', []],
['tutorial/04_logical_regions/logical_regions', []],
['tutorial/05_physical_regions/physical_regions', []],
['tutorial/06_privileges/privileges', []],
['tutorial/07_partitioning/partitioning', []],
['tutorial/08_multiple_partitions/multiple_partitions', []],
['tutorial/09_custom_mapper/custom_mapper', []],
# Examples
['examples/circuit/circuit', []],
['examples/dynamic_registration/dynamic_registration', []],
['examples/ghost/ghost', ['-ll:cpu', '4']],
['examples/ghost_pull/ghost_pull', ['-ll:cpu', '4']],
['examples/realm_saxpy/realm_saxpy', []],
['examples/realm_stencil/realm_stencil', ['-ll:cpu', '4']],
['examples/spmd_cgsolver/spmd_cgsolver', ['-ll:cpu', '4', '-perproc']],
['examples/virtual_map/virtual_map', []],
['examples/attach_2darray_c_fortran_layout/attach_2darray', []],
['examples/attach_array_daxpy/attach_array_daxpy', []],
# Tests
['test/rendering/rendering', ['-i', '2', '-n', '64', '-ll:cpu', '4']],
['test/legion_stl/test_stl', []],
]
if platform.system() != 'Darwin':
legion_cxx_tests += [
# FIXME: Fails non-deterministically on Mac OS: https://github.com/StanfordLegion/legion/issues/213
['test/attach_file_mini/attach_file_mini', []],
]
legion_gasnet_cxx_tests = [
# Examples
['examples/mpi_interop/mpi_interop', []],
]
legion_openmp_cxx_tests = [
# Examples
['examples/omp_saxpy/omp_saxpy', []],
]
legion_python_cxx_tests = [
# Bindings
['bindings/python/legion_python', ['examples/future.py', '-ll:py', '1', '-ll:cpu', '0']],
['bindings/python/legion_python', ['examples/hello.py', '-ll:py', '1', '-ll:cpu', '0']],
['bindings/python/legion_python', ['examples/index_launch.py', '-ll:py', '1', '-ll:cpu', '0']],
['bindings/python/legion_python', ['examples/method.py', '-ll:py', '1', '-ll:cpu', '0']],
['bindings/python/legion_python', ['examples/region.py', '-ll:py', '1', '-ll:cpu', '0']],
['bindings/python/legion_python', ['examples/tunable.py', '-ll:py', '1', '-ll:cpu', '0']],
# Examples
['examples/python_interop/python_interop', ['-ll:py', '1']],
# Tests
['test/python_bindings/python_bindings', ['-ll:py', '1', '-ll:cpu', '0']],
]
legion_hdf_cxx_tests = [
# Tests
['test/hdf_attach_subregion_parallel/hdf_attach_subregion_parallel', ['-ll:cpu', '4']],
]
if platform.system() != 'Darwin':
legion_hdf_cxx_tests += [
# FIXME: Fails non-deterministically on Mac OS: https://github.com/StanfordLegion/legion/issues/213
['examples/attach_file/attach_file', []],
]
def get_legion_cxx_perf_tests(nodes, cores_per_node):
return [
# Circuit: Heavy Compute
['examples/circuit/circuit',
['-l', '10', '-p', str(cores_per_node * nodes), '-npp', '2500', '-wpp', '10000',
'-ll:csize', '8192', '-ll:cpu', str(cores_per_node)]],
# Circuit: Light Compute
['examples/circuit/circuit',
['-l', '10', '-p', '100', '-npp', '2', '-wpp', '4', '-ll:cpu', '2']],
]
def get_regent_perf_tests(nodes, cores_per_node):
return [
# Circuit: Heavy Compute
['language/examples/circuit_sparse.rg',
['-l', '10', '-p', str(nodes * cores_per_node), '-npp', '2500', '-wpp', '10000',
'-ll:csize', '8192', '-ll:cpu', str(cores_per_node), '-fflow-spmd-shardsize', str(cores_per_node)]],
# Circuit: Light Compute
['language/examples/circuit_sparse.rg',
['-l', '10', '-p', '100', '-npp', '2', '-wpp', '4', '-ll:cpu', '2',
'-fflow-spmd-shardsize', '2']],
# PENNANT: Heavy Compute
['language/examples/pennant_fast.rg',
['pennant.tests/sedovbig3x30/sedovbig.pnt',
'-seq_init', '0', '-par_init', '1', '-print_ts', '1', '-prune', '5',
'-npieces', str(nodes * cores_per_node), '-numpcx', '1', '-numpcy', str(nodes * cores_per_node),
'-ll:csize', '8192', '-ll:cpu', str(cores_per_node), '-fflow-spmd-shardsize', str(cores_per_node),
'-fvectorize-unsafe', '1']],
]
def cmd(command, env=None, cwd=None):
print(' '.join(command))
return subprocess.check_call(command, env=env, cwd=cwd)
def run_test_regent(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
cmd([os.path.join(root_dir, 'language/travis.py')], env=env)
def run_cxx(tests, flags, launcher, root_dir, bin_dir, env, thread_count):
for test_file, test_flags in tests:
test_dir = os.path.dirname(os.path.join(root_dir, test_file))
if bin_dir:
test_path = os.path.join(bin_dir, os.path.basename(test_file))
else:
test_path = os.path.join(root_dir, test_file)
cmd(['make', '-C', test_dir, '-j', str(thread_count)], env=env)
cmd(launcher + [test_path] + flags + test_flags, env=env, cwd=test_dir)
# after a successful run, clean up libraries/executables to keep disk
# usage down
if not bin_dir:
cmd(['find', test_dir , '-type', 'f', '(', '-name', '*.a', '-o', '-name', os.path.basename(test_file), ')', '-exec', 'rm', '-v', '{}', ';'])
def run_regent(tests, flags, launcher, root_dir, env, thread_count):
for test_file, test_flags in tests:
test_dir = os.path.dirname(os.path.join(root_dir, test_file))
test_path = os.path.join(root_dir, test_file)
cmd(launcher + [test_path] + flags + test_flags, env=env, cwd=test_dir)
def precompile_regent(tests, flags, launcher, root_dir, env, thread_count):
exe_tests = []
for test_file, test_flags in tests:
test_dir = os.path.dirname(os.path.join(root_dir, test_file))
test_path = os.path.join(root_dir, test_file)
exe = os.path.splitext(test_path)[0] + '.exe'
env = dict(list(env.items()) + [('OBJNAME', exe)])
cmd(launcher + [test_path] + flags + test_flags, env=env, cwd=test_dir)
exe_tests.append([exe, test_flags])
return exe_tests
def run_test_legion_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
if env['USE_CUDA'] == '1':
flags.extend(['-ll:gpu', '1'])
run_cxx(legion_cxx_tests, flags, launcher, root_dir, bin_dir, env, thread_count)
def run_test_legion_gasnet_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
if env['USE_CUDA'] == '1':
flags.extend(['-ll:gpu', '1'])
run_cxx(legion_gasnet_cxx_tests, flags, launcher, root_dir, bin_dir, env, thread_count)
def run_test_legion_openmp_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
if env['USE_CUDA'] == '1':
flags.extend(['-ll:gpu', '1'])
run_cxx(legion_openmp_cxx_tests, flags, launcher, root_dir, bin_dir, env, thread_count)
def run_test_legion_python_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
# Hack: legion_python currently requires the module name to come first
flags = [] # ['-logfile', 'out_%.log']
# Hack: Fix up the environment so that Python can find all the examples.
env = dict(list(env.items()) + [
('PYTHONPATH', ':'.join([os.path.join(root_dir, 'bindings', 'python')])),
])
run_cxx(legion_python_cxx_tests, flags, launcher, root_dir, bin_dir, env, thread_count)
def run_test_legion_hdf_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
if env['USE_CUDA'] == '1':
flags.extend(['-ll:gpu', '1'])
run_cxx(legion_hdf_cxx_tests, flags, launcher, root_dir, bin_dir, env, thread_count)
def run_test_fuzzer(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
env = dict(list(env.items()) + [('WARN_AS_ERROR', '0')])
fuzz_dir = os.path.join(tmp_dir, 'fuzz-tester')
cmd(['git', 'clone', 'https://github.com/StanfordLegion/fuzz-tester', fuzz_dir])
# TODO; Merge deppart branch into master after this makes it to stable Legion branch
cmd(['git', 'checkout', 'deppart'], cwd=fuzz_dir)
cmd(['python', 'main.py'], env=env, cwd=fuzz_dir)
def run_test_realm(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
test_dir = os.path.join(root_dir, 'test/realm')
cmd(['make', '-C', test_dir, 'DEBUG=0', 'clean'], env=env)
cmd(['make', '-C', test_dir, 'DEBUG=0', 'run_all'], env=env)
def run_test_external(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
# Realm perf test (move back to perf test when integrated with perf.py)
perf_dir = os.path.join(root_dir, 'test/performance/realm')
cmd(['make', '-C', perf_dir, 'DEBUG=0', 'clean_all'], env=env)
cmd(['make', '-C', perf_dir, 'DEBUG=0', 'RUNMODE=short', 'run_all'], env=env)
# Fast Direct Solver
# Contact: Chao Chen <[email protected]>
solver_dir = os.path.join(tmp_dir, 'fastSolver2')
cmd(['git', 'clone', 'https://github.com/Charles-Chao-Chen/fastSolver2.git', solver_dir])
# cmd(['git', 'checkout', '4c7a59de63dd46a0abcc7f296fa3b0f511e5e6d2', ], cwd=solver_dir)
solver = [[os.path.join(solver_dir, 'spmd_driver/solver'),
['-machine', '1', '-core', '8', '-mtxlvl', '6', '-ll:cpu', '8']]]
run_cxx(solver, flags, launcher, root_dir, None, env, thread_count)
# Parallel Research Kernels: Stencil
# Contact: Wonchan Lee <[email protected]>
prk_dir = os.path.join(tmp_dir, 'prk')
cmd(['git', 'clone', 'https://github.com/magnatelee/PRK.git', prk_dir])
# This uses a custom Makefile that requires additional
# configuration. Rather than go to that trouble it's easier to
# just use a copy of the standard Makefile template.
stencil_dir = os.path.join(prk_dir, 'LEGION', 'Stencil')
stencil_env = dict(list(env.items()) + [
('OUTFILE', 'stencil'),
('GEN_SRC', 'stencil.cc'),
('CC_FLAGS', (env['CC_FLAGS'] if 'CC_FLAGS' in env else '') +
' -DRADIUS=2 -DRESTRICT_KEYWORD -DDISABLE_BARRIER_MIGRATION'),
])
makefile = os.path.join(root_dir, 'apps/Makefile.template')
cmd(['make', '-f', makefile, '-C', stencil_dir, '-j', str(thread_count)], env=stencil_env)
stencil = os.path.join(stencil_dir, 'stencil')
cmd([stencil, '4', '10', '1000'])
# SNAP
# Contact: Mike Bauer <[email protected]>
snap_dir = os.path.join(tmp_dir, 'snap')
cmd(['git', 'clone', 'https://github.com/StanfordLegion/Legion-SNAP.git', snap_dir])
# This can't handle flags before application arguments, so place
# them after.
snap = [[os.path.join(snap_dir, 'src/snap'),
[os.path.join(snap_dir, 'input/mms.in')] + flags]]
run_cxx(snap, [], launcher, root_dir, None, env, thread_count)
# Soleil-X
# Contact: Manolis Papadakis <[email protected]>
soleil_dir = os.path.join(tmp_dir, 'soleil-x')
cmd(['git', 'clone', 'https://github.com/stanfordhpccenter/soleil-x.git', soleil_dir])
soleil_env = dict(list(env.items()) + [
('LEGION_DIR', root_dir),
('SOLEIL_DIR', soleil_dir),
('CC', 'gcc'),
])
cmd(['make', '-C', os.path.join(soleil_dir, 'src')], env=soleil_env)
# FIXME: Actually run it
# TaskAMR
# Contact: Jonathan Graham <[email protected]>
task_amr_dir = os.path.join(tmp_dir, 'task_amr')
cmd(['git', 'clone', 'https://github.com/lanl/TaskAMR.git', task_amr_dir])
task_amr_env = dict(list(env.items()) + [
('LEGION_ROOT', root_dir),
])
cmd(['make', '-C', os.path.join(task_amr_dir)], env=task_amr_env)
# Barnes-Hut
# Contact: Haithem Turki <[email protected]>
barnes_hut_dir = os.path.join(tmp_dir, 'barnes_hut')
cmd(['git', 'clone', 'https://github.com/StanfordLegion/barnes-hut.git', barnes_hut_dir])
regent_path = os.path.join(root_dir, 'language', 'regent.py')
cmd([regent_path, 'hdf5_converter.rg',
'-i', 'input/bodies-16384-blitz.csv',
'-o', 'bodies-16384-blitz.h5',
'-n', '16384'],
cwd=barnes_hut_dir,
env=env)
cmd([regent_path, 'barnes_hut.rg',
'-i', 'bodies-16384-blitz.h5',
'-n', '16384'],
cwd=barnes_hut_dir,
env=env)
def run_test_private(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
# MiniAero
# Contact: Wonchan Lee <[email protected]>
miniaero_dir = os.path.join(tmp_dir, 'miniaero-spmd')
cmd(['git', 'clone', '-b', 'spmd_flattened_superblocks',
'[email protected]:magnatelee/miniaero-spmd.git', miniaero_dir])
cmd(['make', '-C', miniaero_dir, '-j', str(thread_count)], env=env,
cwd=miniaero_dir)
for test in ['3D_Sod', '3D_Sod_2nd_Order'
# These tests take a long time so skip them by default.
# , 'FlatPlate', 'Ramp'
]:
test_dir = os.path.join(miniaero_dir, 'tests', test)
cmd([os.path.join(test_dir, 'test.sh')], env=env, cwd=test_dir)
# PENNANT
# Contact: Galen Shipman <[email protected]>
pennant_dir = os.path.join(tmp_dir, 'pennant')
cmd(['git', 'clone', '-b', 'spmdv2',
'[email protected]:gshipman/pennant-legion.git', pennant_dir])
# This uses a custom Makefile that requires additional
# configuration. Rather than go to that trouble it's easier to
# just use a copy of the standard Makefile template.
pennant_env = dict(list(env.items()) + [
('OUTFILE', 'pennant'),
('GEN_SRC', ' '.join(glob.glob(os.path.join(pennant_dir, 'src/*.cc')))),
('CC_FLAGS', (env['CC_FLAGS'] if 'CC_FLAGS' in env else '') +
' -std=c++11 -Wno-sign-compare -Wno-unknown-pragmas -Wno-unused-variable' +
' -D__STDC_FORMAT_MACROS -DDISABLE_BARRIER_MIGRATION'),
('WARN_AS_ERROR', '0'),
])
makefile = os.path.join(root_dir, 'apps/Makefile.template')
# Previous build uses -DASSUME_UNALLOCABLE. Clean first to get a fresh environment.
cmd(['make', '-f', makefile, '-C', pennant_dir, 'clean'], env=pennant_env)
cmd(['make', '-f', makefile, '-C', pennant_dir, '-j', str(thread_count)], env=pennant_env)
pennant = os.path.join(pennant_dir, 'pennant')
cmd([pennant, str(app_cores), 'test/sedovsmall/sedovsmall.pnt', '-ll:cpu', str(app_cores)],
cwd=pennant_dir)
def run_test_ctest(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
build_dir = os.path.join(tmp_dir, 'build')
cmd(['ctest', '-j', str(thread_count), '--output-on-failure'],
env=env,
cwd=build_dir)
def hostname():
return subprocess.check_output(['hostname']).strip()
def git_commit_id(repo_dir):
return subprocess.check_output(
['git', 'rev-parse', 'HEAD'], cwd=repo_dir).strip()
def git_branch_name(repo_dir):
proc = subprocess.Popen(
['git', 'symbolic-ref', '--short', 'HEAD'], cwd=repo_dir,
stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, errors = proc.communicate()
if proc.returncode == 0:
return output.strip()
return None
def run_test_perf_one_configuration(launcher, root_dir, tmp_dir, bin_dir, env, thread_count, nodes):
flags = ['-logfile', 'out_%.log']
# for backward-compatibility, use app_cores if PERF_CORES_PER_NODE is not specified
cores_per_node = int(os.environ.get('PERF_CORES_PER_NODE', app_cores))
legion_cxx_perf_tests = get_legion_cxx_perf_tests(nodes, cores_per_node)
regent_perf_tests = get_regent_perf_tests(nodes, cores_per_node)
# Regent needs special flags when in precompile mode
precompile = os.environ.get('PERF_PRECOMPILE_REGENT') == '1'
# Performance test configuration:
metadata = {
'host': (os.environ['CI_RUNNER_DESCRIPTION']
if 'CI_RUNNER_DESCRIPTION' in os.environ else hostname()),
'nodes': nodes,
'commit': (os.environ['CI_BUILD_REF'] if 'CI_BUILD_REF' in os.environ
else git_commit_id(root_dir)),
'branch': (os.environ['CI_BUILD_REF_NAME'] if 'CI_BUILD_REF_NAME' in os.environ
else git_branch_name(root_dir)),
}
cxx_measurements = {
# Hack: Use the command name as the benchmark name.
'benchmark': {
'type': 'argv',
'index': 0,
'filter': 'basename',
},
# Capture command line arguments following flags.
'argv': {
'type': 'argv',
'start': 1 + len(flags),
},
# Record running time in seconds.
'time_seconds': {
'type': 'regex',
'pattern': r'^ELAPSED TIME\s*=\s*(.*) s$',
'multiline': True,
}
}
regent_measurements = {
# Hack: Use the command name as the benchmark name.
'benchmark': {
'type': 'argv',
'index': 1,
'filter': 'basename',
},
# Capture command line arguments following flags.
'argv': {
'type': 'argv',
'start': 2,# + len(flags), # FIXME: Skipping flags, see below.
},
# Record running time in seconds.
'time_seconds': {
'type': 'command',
'args': [
os.path.join(root_dir, 'language/scripts/summarize.py'),
'--machine-readable', '-',
],
}
}
env = dict(list(env.items()) + [
('PERF_OWNER', 'StanfordLegion'),
('PERF_REPOSITORY', 'perf-data'),
('PERF_METADATA', json.dumps(metadata)),
])
cxx_env = dict(list(env.items()) + [
('PERF_MEASUREMENTS', json.dumps(cxx_measurements)),
# Launch through perf.py
('PERF_LAUNCHER', ' '.join(launcher)),
('LAUNCHER', ''),
])
regent_env = dict(list(env.items()) + [
('PERF_MEASUREMENTS', json.dumps(regent_measurements)),
# Launch through regent.py
('PERF_LAUNCHER', ' '.join(launcher) if precompile else ''),
('LAUNCHER', '' if precompile else ' '.join(launcher)),
])
# Build Regent first to avoid recompiling later.
cmd([os.path.join(root_dir, 'language/travis.py'), '--install-only'], env=env)
# Run Legion C++ performance tests.
runner = os.path.join(root_dir, 'perf.py')
run_cxx(legion_cxx_perf_tests, flags, [runner], root_dir, bin_dir, cxx_env, thread_count)
# Run Regent performance tests.
regent_path = os.path.join(root_dir, 'language/regent.py')
if precompile:
# Precompile executables.
build_env = dict(list(env.items()) + [
('SAVEOBJ', '1'),
('STANDALONE', '1'),
('LAUNCHER', ''),
])
exe_tests = precompile_regent(regent_perf_tests, [], [regent_path], root_dir, build_env, thread_count)
# FIXME: PENNANT can't handle the -logfile flag coming first, so just skip it.
run_regent(exe_tests, [], [runner], root_dir, regent_env, thread_count)
else:
# FIXME: PENNANT can't handle the -logfile flag coming first, so just skip it.
run_regent(regent_perf_tests, [], [runner, regent_path], root_dir, regent_env, thread_count)
# Render the final charts.
subprocess.check_call(
[os.path.join(root_dir, 'tools', 'perf_chart.py'),
'[email protected]:StanfordLegion/perf-data.git',
'[email protected]:StanfordLegion/perf-data.git'],
env=env)
def run_test_perf(launcher, root_dir, tmp_dir, bin_dir, env, thread_count, min_nodes, max_nodes):
nodes = min_nodes
while nodes <= max_nodes:
launcher = [w.format(**{'NODES': nodes}) for w in launcher]
run_test_perf_one_configuration(launcher, root_dir, tmp_dir, bin_dir, env, thread_count, nodes)
nodes *= 2
def check_test_legion_cxx(root_dir):
print('Checking that tests that SHOULD be tested are ACTUALLY tested...')
print()
# These are the directories we SHOULD have coverage for.
should_dirs = ['tutorial', 'examples', 'test']
should_tests = []
for dir in should_dirs:
entries = os.listdir(os.path.join(root_dir, dir))
for entry in entries:
if os.path.isdir(os.path.join(root_dir, dir, entry)):
should_tests.append(os.path.join(dir, entry))
assert len(should_tests) > 0
# These are the tests we ACTUALLY have coverage for.
tests = legion_cxx_tests + legion_gasnet_cxx_tests + \
legion_openmp_cxx_tests + legion_python_cxx_tests + \
legion_hdf_cxx_tests
actual_tests = set()
for test_file, test_flags in tests:
actual_tests.add(os.path.dirname(test_file))
actual_tests.add('test/realm') # We test Realm separately.
actual_tests.add('test/performance') # We test performance separately.
# Check that all tests that SHOULD be covered are ACTUALLY covered.
not_tests = []
for should_test in should_tests:
if should_test not in actual_tests:
not_tests.append(should_test)
if len(not_tests) > 0:
print('The following tests are NOT currently being tested:')
print()
for not_test in not_tests:
print(' %s' % not_test)
print()
raise Exception('There are tests that are NOT in the test suite')
def build_cmake(root_dir, tmp_dir, env, thread_count,
test_regent, test_legion_cxx, test_external, test_perf, test_ctest):
build_dir = os.path.join(tmp_dir, 'build')
install_dir = os.path.join(tmp_dir, 'install')
os.mkdir(build_dir)
os.mkdir(install_dir)
cmdline = ['cmake', '-DCMAKE_INSTALL_PREFIX=%s' % install_dir ]
cmdline.append('-DCMAKE_BUILD_TYPE=%s' % ('Debug' if env['DEBUG'] == '1' else
'Release'))
cmdline.append('-DLegion_USE_GASNet=%s' % ('ON' if env['USE_GASNET'] == '1' else
'OFF'))
cmdline.append('-DLegion_USE_CUDA=%s' % ('ON' if env['USE_CUDA'] == '1' else 'OFF'))
cmdline.append('-DLegion_USE_Python=%s' % ('ON' if env['USE_PYTHON'] == '1' else 'OFF'))
cmdline.append('-DBUILD_SHARED_LIBS=%s' % ('ON' if env['USE_PYTHON'] == '1' else 'OFF'))
cmdline.append('-DLegion_USE_LLVM=%s' % ('ON' if env['USE_LLVM'] == '1' else 'OFF'))
cmdline.append('-DLegion_USE_HDF5=%s' % ('ON' if env['USE_HDF'] == '1' else 'OFF'))
if test_ctest:
cmdline.append('-DLegion_ENABLE_TESTING=ON')
if 'LAUNCHER' in env:
cmdline.append('-DLegion_TEST_LAUNCHER=%s' % env['LAUNCHER'])
else:
cmdline.append('-DLegion_ENABLE_TESTING=OFF')
if 'CC_FLAGS' in env:
cmdline.append('-DCMAKE_CXX_FLAGS=%s' % env['CC_FLAGS'])
if test_regent or test_legion_cxx or test_external or test_perf or test_ctest:
cmdline.append('-DLegion_BUILD_ALL=ON')
if test_regent or test_external:
cmdline.append('-DBUILD_SHARED_LIBS=ON')
# last argument to cmake is the root of the tree
cmdline.append(root_dir)
cmd(cmdline, env=env, cwd=build_dir)
cmd(['make', '-C', build_dir, '-j', str(thread_count)], env=env)
cmd(['make', '-C', build_dir, 'install'], env=env)
return os.path.join(build_dir, 'bin')
def build_regent(root_dir, env):
cmd([os.path.join(root_dir, 'language/travis.py'), '--install-only'], env=env)
def clean_cxx(tests, root_dir, env, thread_count):
env = dict(list(env.items()) + [
('MAKEFLAGS', 's'), # Always silence initial clean.
])
for test_file, test_flags in tests:
test_dir = os.path.dirname(os.path.join(root_dir, test_file))
cmd(['make', '-C', test_dir, 'clean'], env=env)
def build_make_clean(root_dir, env, thread_count, test_legion_cxx, test_perf,
test_external, test_private):
# External and private also require cleaning, even though they get
# built separately.
if test_legion_cxx or test_perf or test_external or test_private:
clean_cxx(legion_cxx_tests, root_dir, env, thread_count)
def option_enabled(option, options, var_prefix='', default=True):
if options is not None: return option in options
option_var = '%s%s' % (var_prefix, option.upper())
if option_var in os.environ: return os.environ[option_var] == '1'
return default
class Stage(object):
__slots__ = ['name', 'begin_time']
def __init__(self, name):
self.name = name
def __enter__(self):
self.begin_time = datetime.datetime.now()
print()
print('#'*60)
print('### Entering Stage: %s' % self.name)
print('#'*60)
print()
sys.stdout.flush()
def __exit__(self, exc_type, exc_val, exc_tb):
end_time = datetime.datetime.now()
print()
print('#'*60)
print('### Exiting Stage: %s' % self.name)
print('### * Exception Type: %s' % exc_type)
print('### * Elapsed Time: %s' % (end_time - self.begin_time))
print('#'*60)
print()
sys.stdout.flush()
def report_mode(debug, launcher,
test_regent, test_legion_cxx, test_fuzzer, test_realm,
test_external, test_private, test_perf, test_ctest, use_gasnet,
use_cuda, use_openmp, use_python, use_llvm, use_hdf, use_spy, use_prof,
use_gcov, use_cmake, use_rdir):
print()
print('#'*60)
print('### Test Suite Configuration')
print('###')
print('### Debug: %s' % debug)
print('### Launcher: %s' % launcher)
print('###')
print('### Running Tests:')
print('### * Regent: %s' % test_regent)
print('### * Legion C++: %s' % test_legion_cxx)
print('### * Fuzzer: %s' % test_fuzzer)
print('### * Realm: %s' % test_realm)
print('### * External: %s' % test_external)
print('### * Private: %s' % test_private)
print('### * Perf: %s' % test_perf)
print('### * CTest: %s' % test_ctest)
print('###')
print('### Build Flags:')
print('### * GASNet: %s' % use_gasnet)
print('### * CUDA: %s' % use_cuda)
print('### * OpenMP: %s' % use_openmp)
print('### * Python: %s' % use_python)
print('### * LLVM: %s' % use_llvm)
print('### * HDF5: %s' % use_hdf)
print('### * Spy: %s' % use_spy)
print('### * Prof: %s' % use_prof)
print('### * Gcov: %s' % use_gcov)
print('### * CMake: %s' % use_cmake)
print('### * RDIR: %s' % use_rdir)
print('#'*60)
print()
sys.stdout.flush()
def run_tests(test_modules=None,
debug=True,
use_features=None,
launcher=None,
thread_count=None,
root_dir=None,
check_ownership=False,
keep_tmp_dir=False,
verbose=False):
if thread_count is None:
thread_count = multiprocessing.cpu_count()
if root_dir is None:
root_dir = os.path.dirname(os.path.realpath(__file__))
# Determine which test modules to run.
def module_enabled(module, default=True):
return option_enabled(module, test_modules, 'TEST_', default)
test_regent = module_enabled('regent')
test_legion_cxx = module_enabled('legion_cxx')
test_fuzzer = module_enabled('fuzzer', debug)
test_realm = module_enabled('realm', not debug)
test_external = module_enabled('external', False)
test_private = module_enabled('private', False)
test_perf = module_enabled('perf', False)
test_ctest = module_enabled('ctest', False)
# Determine which features to build with.
def feature_enabled(feature, default=True):
return option_enabled(feature, use_features, 'USE_', default)
use_gasnet = feature_enabled('gasnet', False)
use_cuda = feature_enabled('cuda', False)
use_openmp = feature_enabled('openmp', False)
use_python = feature_enabled('python', False)
use_llvm = feature_enabled('llvm', False)
use_hdf = feature_enabled('hdf', False)
use_spy = feature_enabled('spy', False)
use_prof = feature_enabled('prof', False)
use_gcov = feature_enabled('gcov', False)
use_cmake = feature_enabled('cmake', False)
use_rdir = feature_enabled('rdir', True)
# Determine parameters for performance tests.
if test_perf:
if 'PERF_MIN_NODES' not in os.environ:
raise Exception('Performance tests requested but PERF_MIN_NODES is not set')
min_nodes = int(os.environ['PERF_MIN_NODES'])
if 'PERF_MAX_NODES' not in os.environ:
raise Exception('Performance tests requested but PERF_MAX_NODES is not set')
max_nodes = int(os.environ['PERF_MAX_NODES'])
if test_perf and debug:
raise Exception('Performance tests requested but DEBUG is enabled')
if test_ctest and not use_cmake:
raise Exception('CTest cannot be used without CMake')
if use_gasnet and launcher is None:
raise Exception('GASNet is enabled but launcher is not set (use --launcher or LAUNCHER)')
launcher = launcher.split() if launcher is not None else []
gcov_flags = ' -ftest-coverage -fprofile-arcs'
if check_ownership:
check_test_legion_cxx(root_dir)
return
report_mode(debug, launcher,
test_regent, test_legion_cxx, test_fuzzer, test_realm,
test_external, test_private, test_perf, test_ctest,
use_gasnet,
use_cuda, use_openmp, use_python, use_llvm, use_hdf, use_spy, use_prof,
use_gcov, use_cmake, use_rdir)
tmp_dir = tempfile.mkdtemp(dir=root_dir)
if verbose:
print('Using build directory: %s' % tmp_dir)
print()
# Normalize the test environment.
env = dict(list(os.environ.items()) + [
('DEBUG', '1' if debug else '0'),
('LAUNCHER', ' '.join(launcher)),
('USE_GASNET', '1' if use_gasnet else '0'),
('TEST_GASNET', '1' if use_gasnet else '0'),
('USE_CUDA', '1' if use_cuda else '0'),
('TEST_CUDA', '1' if use_cuda else '0'),
('USE_OPENMP', '1' if use_openmp else '0'),
('TEST_OPENMP', '1' if use_openmp else '0'),
('USE_PYTHON', '1' if use_python else '0'),
('TEST_PYTHON', '1' if use_python else '0'),
('USE_LLVM', '1' if use_llvm else '0'),
('USE_HDF', '1' if use_hdf else '0'),
('TEST_HDF', '1' if use_hdf else '0'),
('USE_SPY', '1' if use_spy else '0'),
('TEST_SPY', '1' if use_spy else '0'),
('USE_PROF', '1' if use_prof else '0'),
('TEST_PROF', '1' if use_prof else '0'),
('TEST_GCOV', '1' if use_gcov else '0'),
('USE_RDIR', '1' if use_rdir else '0'),
('LG_RT_DIR', os.path.join(root_dir, 'runtime')),
('CMAKE_BUILD_DIR', os.path.join(tmp_dir, 'build'))] + (
# Gcov doesn't get a USE_GCOV flag, but instead stuff the GCC
# options for Gcov on to the compile and link flags.
[('CC_FLAGS', (os.environ['CC_FLAGS'] + gcov_flags
if 'CC_FLAGS' in os.environ else gcov_flags)),
('LD_FLAGS', (os.environ['LD_FLAGS'] + gcov_flags
if 'LD_FLAGS' in os.environ else gcov_flags)),
] if use_gcov else []))
try:
# Build tests.
with Stage('build'):
if use_cmake:
bin_dir = build_cmake(
root_dir, tmp_dir, env, thread_count,
test_regent, test_legion_cxx, test_external,
test_perf, test_ctest)
else:
# With GNU Make, builds happen inline. But clean here.
build_make_clean(
root_dir, env, thread_count, test_legion_cxx, test_perf,
# These configurations also need to be cleaned first.
test_external, test_private)
bin_dir = None
# Run tests.
if test_regent:
with Stage('regent'):
run_test_regent(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if test_legion_cxx:
with Stage('legion_cxx'):
run_test_legion_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if use_gasnet:
run_test_legion_gasnet_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if use_openmp:
run_test_legion_openmp_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if use_python:
run_test_legion_python_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if use_hdf:
run_test_legion_hdf_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if test_fuzzer:
with Stage('fuzzer'):
run_test_fuzzer(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if test_realm:
with Stage('realm'):
run_test_realm(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if test_external:
with Stage('external'):
if not test_regent:
build_regent(root_dir, env)
run_test_external(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if test_private:
with Stage('private'):
run_test_private(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
if test_perf:
with Stage('perf'):
run_test_perf(launcher, root_dir, tmp_dir, bin_dir, env, thread_count, min_nodes, max_nodes)
if test_ctest:
with Stage('ctest'):
run_test_ctest(launcher, root_dir, tmp_dir, bin_dir, env, thread_count)
finally:
if keep_tmp_dir:
print('Leaving build directory:')
print(' %s' % tmp_dir)
else:
if verbose:
print('Removing build directory:')
print(' %s' % tmp_dir)
shutil.rmtree(tmp_dir)
# behaves enough like a normal list for ArgumentParser's needs, except for
# the __contains__ method, which accepts a list of values and checks each
# one for membership
class MultipleChoiceList(object):
def __init__(self, *args):
self.list = list(args)
def __contains__(self, x):
if type(x) is list:
for v in x:
if v not in self.list:
return False
return True
else:
return x in self.list
def __iter__(self):
return self.list.__iter__()
class ExtendAction(argparse.Action):
def __init__(self, **kwargs):
super(ExtendAction, self).__init__(**kwargs)
def __call__(self, parser, namespace, values, option_string=None):
items = getattr(namespace, self.dest, None)
items = items[:] if items else []
if type(values) is list:
items.extend(values)
else:
items.append(values)
setattr(namespace, self.dest, items)
def driver():
parser = argparse.ArgumentParser(
description = 'Legion test suite')
# What tests to run:
parser.add_argument(
'--test', dest='test_modules', action=ExtendAction,
choices=MultipleChoiceList('regent', 'legion_cxx', 'fuzzer',
'realm', 'external',
'private', 'perf', 'ctest'),
type=lambda s: s.split(','),
default=None,
help='Test modules to run (also via TEST_*).')
# Build options:
parser.add_argument(
'--debug', dest='debug', action='store_true',
default=os.environ['DEBUG'] == '1' if 'DEBUG' in os.environ else True,
help='Build Legion in debug mode (also via DEBUG).')
parser.add_argument(
'--no-debug', dest='debug', action='store_false',
help='Disable debug mode (equivalent to DEBUG=0).')
parser.add_argument(
'--use', dest='use_features', action=ExtendAction,
choices=MultipleChoiceList('gasnet', 'cuda', 'openmp',
'python', 'llvm', 'hdf', 'spy', 'prof',
'gcov', 'cmake', 'rdir'),
type=lambda s: s.split(','),
default=None,
help='Build Legion with features (also via USE_*).')
parser.add_argument(
'--launcher', dest='launcher', action='store',
default=os.environ['LAUNCHER'] if 'LAUNCHER' in os.environ else None,
help='Launcher for Legion tests (also via LAUNCHER).')
parser.add_argument(
'-C', '--directory', dest='root_dir', metavar='DIR', action='store', required=False,
help='Legion root directory.')
parser.add_argument(
'-j', dest='thread_count', nargs='?', type=int,
help='Number threads used to compile.')
parser.add_argument(
'--check', dest='check_ownership', action='store_true',
help='Check for tests that are being skipped.')
parser.add_argument(
'--keep', dest='keep_tmp_dir', action='store_true',
help='Keep temporary directory.')
parser.add_argument(
'-v', '--verbose', dest='verbose', action='store_true',
help='Print more debugging information.')
args = parser.parse_args()
run_tests(**vars(args))
if __name__ == '__main__':
driver()