forked from StanfordLegion/legion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
executable file
·686 lines (607 loc) · 27.7 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
#!/usr/bin/env python
# Copyright 2017 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/spmd_cgsolver/spmd_cgsolver', ['-ll:cpu', '4', '-perproc']],
['examples/virtual_map/virtual_map', []],
# Tests
]
if platform.system() != 'Darwin':
legion_cxx_tests = 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_hdf_cxx_tests = [
# Examples
['examples/attach_file/attach_file', []],
# Tests
['test/hdf_attach_subregion_parallel/hdf_attach_subregion_parallel', ['-ll:cpu', '4']],
]
legion_cxx_perf_tests = [
# Circuit: Heavy Compute
['examples/circuit/circuit',
['-l', '10', '-p', str(app_cores), '-npp', '2500', '-wpp', '10000', '-ll:cpu', str(app_cores)]],
# Circuit: Light Compute
['examples/circuit/circuit',
['-l', '10', '-p', '100', '-npp', '2', '-wpp', '4', '-ll:cpu', '2']],
]
regent_perf_tests = [
# Circuit: Heavy Compute
['language/examples/circuit_sparse.rg',
['-l', '10', '-p', str(app_cores), '-npp', '2500', '-wpp', '10000', '-ll:cpu', str(app_cores),
'-fflow-spmd-shardsize', str(app_cores)]],
# 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(app_cores), '-numpcx', '1', '-numpcy', str(app_cores),
'-ll:csize', '8192', '-ll:cpu', str(app_cores), '-fflow-spmd-shardsize', str(app_cores),
'-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)
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 run_test_legion_cxx(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
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']
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']
run_cxx(legion_openmp_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']
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])
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', 'SHARED_LOWLEVEL=0', 'USE_CUDA=0', 'USE_GASNET=0', 'clean'], env=env)
cmd(['make', '-C', test_dir, 'DEBUG=0', 'SHARED_LOWLEVEL=0', 'USE_CUDA=0', 'USE_GASNET=0', 'run_all'], env=env)
perf_dir = os.path.join(root_dir, 'test/performance/realm')
cmd(['make', '-C', perf_dir, 'DEBUG=0', 'SHARED_LOWLEVEL=0', 'clean_all'], env=env)
cmd(['make', '-C', perf_dir, 'DEBUG=0', 'SHARED_LOWLEVEL=0', 'run_all'], env=env)
def run_test_external(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
# 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])
solver = [[os.path.join(solver_dir, 'spmd_benchMark/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)
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 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(launcher, root_dir, tmp_dir, bin_dir, env, thread_count):
flags = ['-logfile', 'out_%.log']
# Performance test configuration:
metadata = {
'host': (os.environ['CI_RUNNER_DESCRIPTION']
if 'CI_RUNNER_DESCRIPTION' in os.environ else hostname()),
'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', ''),
('LAUNCHER', ' '.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')
launcher = [runner] # Note: LAUNCHER is still passed via the environment
run_cxx(legion_cxx_perf_tests, flags, launcher, root_dir, bin_dir, cxx_env, thread_count)
# Run Regent performance tests.
regent_path = os.path.join(root_dir, 'language/regent.py')
# 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'),
'https://github.com/StanfordLegion/perf-data.git'],
env=env)
def check_test_legion_cxx(root_dir):
print('Checking that tests that SHOULD 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_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_legion_cxx, test_perf):
build_dir = os.path.join(tmp_dir, 'build')
install_dir = os.path.join(tmp_dir, 'install')
os.mkdir(build_dir)
os.mkdir(install_dir)
cmd(['cmake', '-DCMAKE_INSTALL_PREFIX=%s' % install_dir,
'-DCMAKE_BUILD_TYPE=%s' % (
'Debug' if env['DEBUG'] == '1' else 'Release'),
'-DLegion_USE_GASNet=%s' % (
'ON' if env['USE_GASNET'] == '1' else 'OFF'),
'-DLegion_USE_CUDA=%s' % (
'ON' if env['USE_CUDA'] == '1' else 'OFF'),
'-DLegion_USE_LLVM=%s' % (
'ON' if env['USE_LLVM'] == '1' else 'OFF'),
'-DLegion_USE_HDF5=%s' % (
'ON' if env['USE_HDF'] == '1' else 'OFF')] +
(['-DCMAKE_CXX_FLAGS=%s' % env['CC_FLAGS']]
if 'CC_FLAGS' in env else []) +
(['-DLegion_BUILD_TUTORIAL=ON',
'-DLegion_BUILD_EXAMPLES=ON',
'-DLegion_BUILD_TESTS=ON',
] if test_legion_cxx or test_perf else []) +
[root_dir],
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 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(test_regent, test_legion_cxx, test_fuzzer, test_realm,
test_external, test_private, test_perf, use_gasnet,
use_cuda, use_openmp, use_llvm, use_hdf, use_spy, use_gcov,
use_cmake, use_rdir):
print()
print('#'*60)
print('### Test Suite Configuration')
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('###')
print('### Build Flags:')
print('### * GASNet: %s' % use_gasnet)
print('### * CUDA: %s' % use_cuda)
print('### * OpenMP: %s' % use_openmp)
print('### * LLVM: %s' % use_llvm)
print('### * HDF5: %s' % use_hdf)
print('### * Spy: %s' % use_spy)
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)
# 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_llvm = feature_enabled('llvm', False)
use_hdf = feature_enabled('hdf', False)
use_spy = feature_enabled('spy', False)
use_gcov = feature_enabled('gcov', False)
use_cmake = feature_enabled('cmake', False)
use_rdir = feature_enabled('rdir', True)
if test_perf and debug:
raise Exception('Performance tests requested but DEBUG is enabled')
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'
# 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'),
('USE_OPENMP', '1' if use_openmp else '0'),
('TEST_OPENMP', '1' if use_openmp 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'),
('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'))] + (
# 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 []))
if check_ownership:
check_test_legion_cxx(root_dir)
return
report_mode(test_regent, test_legion_cxx, test_fuzzer, test_realm,
test_external, test_private, test_perf, use_gasnet,
use_cuda, use_openmp, use_llvm, use_hdf, use_spy, use_gcov,
use_cmake, use_rdir)
tmp_dir = tempfile.mkdtemp(dir=root_dir)
if verbose:
print('Using build directory: %s' % tmp_dir)
print()
try:
# Build tests.
with Stage('build'):
if use_cmake:
bin_dir = build_cmake(
root_dir, tmp_dir, env, thread_count, test_legion_cxx, test_perf)
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_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'):
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)
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)
def driver():
parser = argparse.ArgumentParser(
description = 'Legion test suite')
# What tests to run:
parser.add_argument(
'--test', dest='test_modules', action='append',
choices=['regent', 'legion_cxx', 'fuzzer', 'realm', 'external', 'private', 'perf'],
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(
'--use', dest='use_features', action='append',
choices=['gasnet', 'cuda', 'openmp', 'llvm', 'hdf', 'spy', 'gcov',
'cmake', 'rdir'],
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()