-
Notifications
You must be signed in to change notification settings - Fork 70
/
conftest.py
659 lines (511 loc) · 21.9 KB
/
conftest.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
# SPDX-FileCopyrightText: © 2023 Tenstorrent Inc.
# SPDX-License-Identifier: Apache-2.0
import pytest
import torch
import random
import os
import numpy as np
from functools import partial
from itertools import chain
from operator import contains, eq, getitem
from pathlib import Path
import json
import copy
import multiprocess
import signal
import time
import psutil
from datetime import datetime
from loguru import logger
from tests.scripts.common import run_process_and_get_result
@pytest.fixture(scope="function")
def reset_seeds():
torch.manual_seed(213919)
np.random.seed(213919)
random.seed(213919)
yield
@pytest.fixture(scope="function")
def function_level_defaults(reset_seeds):
yield
@pytest.fixture(scope="function")
def is_ci_env():
if os.getenv("CI") == "true":
return True
return False
@pytest.fixture(scope="function")
def is_single_card_n300(device):
import ttnn
num_pcie = ttnn.GetNumPCIeDevices()
num_devices = ttnn.GetNumAvailableDevices()
# N150 has 1 chip; N300 has 2 chips (1 pcie); T3000 has 8 chips (4 pcie)
return num_pcie == 1 and num_devices == 2 and device.arch().name == "WORMHOLE_B0"
@pytest.fixture(scope="session")
def model_location_generator():
def model_location_generator_(model_version, model_subdir=""):
model_folder = Path("tt_dnn-models") / model_subdir
internal_weka_path = Path("/mnt/MLPerf") / model_folder / model_version
has_internal_weka = internal_weka_path.exists()
internal_cache_path = Path("/opt/tt-metal-models") / model_folder / model_version
has_internal_cache = internal_cache_path.exists()
if has_internal_weka:
return internal_weka_path
elif has_internal_cache:
return internal_cache_path
else:
return model_version
return model_location_generator_
@pytest.fixture(scope="session")
def get_tt_cache_path():
def get_tt_cache_path_(model_version, model_subdir="", default_dir=""):
model_folder = Path("tt_dnn-models/tt") / model_subdir
internal_weka_path = Path("/mnt/MLPerf") / model_folder / model_version
has_internal_weka = internal_weka_path.exists()
internal_cache_path = Path("/opt/tt-metal-models") / model_folder / model_version
has_internal_cache = internal_cache_path.exists()
if has_internal_weka:
return internal_weka_path
elif has_internal_cache:
return internal_cache_path
else:
default_path = Path(default_dir) / model_folder / model_version
default_path.mkdir(parents=True, exist_ok=True)
return default_path
return get_tt_cache_path_
def get_dispatch_core_type():
import ttnn
# TODO: 11059 move dispatch_core_type to device_params when all tests are updated to not use WH_ARCH_YAML env flag
dispatch_core_type = ttnn.device.DispatchCoreType.WORKER
if ("WH_ARCH_YAML" in os.environ) and os.environ["WH_ARCH_YAML"] == "wormhole_b0_80_arch_eth_dispatch.yaml":
dispatch_core_type = ttnn.device.DispatchCoreType.ETH
return dispatch_core_type
@pytest.fixture(scope="function")
def device_params(request):
return getattr(request, "param", {})
@pytest.fixture(scope="function")
def device(request, device_params):
import ttnn
device_id = request.config.getoption("device_id")
request.node.pci_ids = [ttnn.GetPCIeDeviceID(device_id)]
num_devices = ttnn.GetNumPCIeDevices()
assert device_id < num_devices, "CreateDevice not supported for non-mmio device"
device = ttnn.CreateDevice(device_id=device_id, dispatch_core_type=get_dispatch_core_type(), **device_params)
ttnn.SetDefaultDevice(device)
yield device
ttnn.DumpDeviceProfiler(device)
ttnn.synchronize_device(device)
ttnn.close_device(device)
@pytest.fixture(scope="function")
def pcie_devices(request, device_params):
import ttnn
num_devices = ttnn.GetNumPCIeDevices()
device_ids = [i for i in range(num_devices)]
request.node.pci_ids = device_ids
# Get only physical devices
devices = ttnn.CreateDevices(device_ids, dispatch_core_type=get_dispatch_core_type(), **device_params)
yield [devices[i] for i in range(num_devices)]
for device in devices.values():
ttnn.DumpDeviceProfiler(device)
ttnn.CloseDevices(devices)
@pytest.fixture(scope="function")
def all_devices(request, device_params):
import ttnn
num_devices = ttnn.GetNumAvailableDevices()
device_ids = [i for i in range(num_devices)]
request.node.pci_ids = [ttnn.GetPCIeDeviceID(i) for i in device_ids]
# Get only physical devices
devices = ttnn.CreateDevices(device_ids, dispatch_core_type=get_dispatch_core_type(), **device_params)
yield [devices[i] for i in range(num_devices)]
for device in devices.values():
ttnn.DumpDeviceProfiler(device)
ttnn.CloseDevices(devices)
@pytest.fixture(scope="function")
def mesh_device(request, silicon_arch_name, silicon_arch_wormhole_b0, device_params):
"""
Pytest fixture to set up a device mesh for tests.
If `request.param` is an integer, it specifies the number of devices to use (up to available devices).
If `request.param` is a tuple, it defines the 2D grid dimensions (rows, columns) for TG, e.g., (8, 4) creates
a devish mesh grid of 8 rows and 4 columns, totaling 32 devices. The total number of devices should not exceed available devices.
Args:
request: Pytest request object.
silicon_arch_name: Name of the silicon architecture.
silicon_arch_wormhole_b0: Silicon architecture parameter.
device_params: Additional device configuration parameters.
Yields:
mesh_device: Initialized device mesh object.
"""
import ttnn
device_ids = ttnn.get_device_ids()
try:
param = request.param
except (ValueError, AttributeError):
param = len(device_ids) # Default to using all available devices
if isinstance(param, tuple):
grid_dims = param
assert len(grid_dims) == 2, "Device mesh grid shape should have exactly two elements."
num_devices_requested = grid_dims[0] * grid_dims[1]
if num_devices_requested > len(device_ids):
pytest.skip("Requested more devices than available. Test not applicable for machine")
mesh_shape = ttnn.MeshShape(*grid_dims)
assert num_devices_requested <= len(device_ids), "Requested more devices than available."
else:
num_devices_requested = min(param, len(device_ids))
mesh_shape = ttnn.MeshShape(1, num_devices_requested)
request.node.pci_ids = [ttnn.GetPCIeDeviceID(i) for i in device_ids[:num_devices_requested]]
mesh_device = ttnn.open_mesh_device(mesh_shape, dispatch_core_type=get_dispatch_core_type(), **device_params)
logger.debug(f"multidevice with {mesh_device.get_num_devices()} devices is created")
yield mesh_device
for device in mesh_device.get_devices():
ttnn.DumpDeviceProfiler(device)
ttnn.close_mesh_device(mesh_device)
del mesh_device
@pytest.fixture(scope="function")
def pcie_mesh_device(request, silicon_arch_name, silicon_arch_wormhole_b0, device_params):
import ttnn
device_ids = ttnn.get_pcie_device_ids()
try:
num_pcie_devices_requested = min(request.param, len(device_ids))
except (ValueError, AttributeError):
num_pcie_devices_requested = len(device_ids)
if num_pcie_devices_requested != 4:
pytest.skip("Only 4 PCIe devices are supported for testing")
request.node.pci_ids = device_ids[:num_pcie_devices_requested]
mesh_device = ttnn.open_mesh_device(
ttnn.MeshShape(2, 2),
dispatch_core_type=get_dispatch_core_type(),
**device_params,
offset=(0, 1),
mesh_type=ttnn.MeshType.Ring,
)
logger.debug(f"multidevice with {mesh_device.get_num_devices()} devices is created")
yield mesh_device
for device in mesh_device.get_devices():
ttnn.DumpDeviceProfiler(device)
ttnn.close_mesh_device(mesh_device)
del mesh_device
@pytest.fixture(scope="function")
def n300_mesh_device(request, silicon_arch_name, silicon_arch_wormhole_b0, device_params):
import ttnn
if ttnn.get_num_devices() < 2:
pytest.skip()
mesh_device = ttnn.open_mesh_device(
ttnn.MeshShape(1, 2),
dispatch_core_type=get_dispatch_core_type(),
**device_params,
)
logger.debug(f"multidevice with {mesh_device.get_num_devices()} devices is created")
yield mesh_device
for device in mesh_device.get_devices():
ttnn.DumpDeviceProfiler(device)
ttnn.close_mesh_device(mesh_device)
del mesh_device
@pytest.fixture(scope="function")
def t3k_mesh_device(request, silicon_arch_name, silicon_arch_wormhole_b0, device_params):
import ttnn
if ttnn.get_num_devices() < 8:
pytest.skip()
request.node.pci_ids = ttnn.get_pcie_device_ids()
mesh_device = ttnn.open_mesh_device(
ttnn.MeshShape(2, 4),
dispatch_core_type=get_dispatch_core_type(),
**device_params,
mesh_type=ttnn.MeshType.Ring,
)
logger.debug(f"multidevice with {mesh_device.get_num_devices()} devices is created")
yield mesh_device
for device in mesh_device.get_devices():
ttnn.DumpDeviceProfiler(device)
ttnn.close_mesh_device(mesh_device)
del mesh_device
@pytest.fixture()
def clear_compile_cache():
yield
import ttnn
ttnn.device.DisablePersistentKernelCache()
@pytest.fixture(autouse=True)
def reset_default_device():
import ttnn
device = ttnn.GetDefaultDevice()
yield
ttnn.SetDefaultDevice(device)
def get_devices(request):
if "device" in request.fixturenames:
devices = [request.getfixturevalue("device")]
elif "all_devices" in request.fixturenames:
devices = request.getfixturevalue("all_devices")
elif "pcie_devices" in request.fixturenames:
devices = request.getfixturevalue("pcie_devices")
elif "mesh_device" in request.fixturenames:
devices = request.getfixturevalue("mesh_device").get_devices()
elif "n300_mesh_device" in request.fixturenames:
devices = request.getfixturevalue("n300_mesh_device").get_devices()
elif "t3k_mesh_device" in request.fixturenames:
devices = request.getfixturevalue("t3k_mesh_device").get_devices()
elif "pcie_mesh_device" in request.fixturenames:
devices = request.getfixturevalue("pcie_mesh_device").get_devices()
else:
devices = []
return devices
@pytest.fixture(scope="function")
def use_program_cache(request):
devices = get_devices(request)
if not devices:
logger.warning("No device fixture found to apply program cache to: PROGRAM CACHE DISABLED")
for dev in devices:
dev.enable_program_cache()
yield
for dev in devices:
dev.disable_and_clear_program_cache()
@pytest.fixture(scope="function")
def enable_async_mode(request):
devices = get_devices(request)
if not devices:
logger.warning("No device fixture found to apply async mode to: ASYNC MODE DISABLED")
for dev in devices:
dev.enable_async(request.param)
yield request.param
for dev in devices:
dev.enable_async(False)
@pytest.fixture(scope="function")
def tracy_profile():
from tracy import Profiler
profiler = Profiler()
profiler.enable()
yield
profiler.disable()
###############################
# Modifying pytest hooks
###############################
ALL_ARCHS = set(
[
"grayskull",
"wormhole_b0",
]
)
def pytest_addoption(parser):
parser.addoption(
"--tt-arch",
choices=[*ALL_ARCHS],
default=os.environ.get("ARCH_NAME", "grayskull"),
help="Target arch, ex. grayskull, wormhole_b0",
)
parser.addoption(
"--pipeline-type",
default="",
help="Only `models_device_performance_bare_metal` should run `pytest_runtest_teardown`",
)
parser.addoption(
"--device-id",
type=int,
default=0,
help="Target device id",
)
parser.addoption(
"--input-method",
action="store",
choices=["json", "cli"],
default=None,
help="Choose input method: 1) json or 2) cli",
)
parser.addoption(
"--input-path",
action="store",
default="",
help="Path to json file with inputs",
)
parser.addoption("--cli-input", action="store", default=None, help="Enter prompt if --input-method=cli")
parser.addoption(
"--metal-timeout",
action="store",
default=None,
help="Enable process timeout",
)
@pytest.fixture
def input_path(request):
return request.config.getoption("--input-path")
def pytest_generate_tests(metafunc):
"""
This is not a standard docstring.
We will explain the non-standard fixtures that pytest_generate_tests is
creating here.
silicon_arch_name and silicon_arch_<ARCH_NAME>
----------------------------------------------
This is how tests should be requesting accelerator architecture names.
Tests which aim to run on silicon should request a silicon_arch_name
fixture. Just that single fixture will parametrize the test to run on the
provided architecture name from the command line through the --tt-arch
option. The value of the fixture will be the string value of the
architecture name. For example,
@pytest.mark.post_commit
def test_model_silicon(silicon_arch_name):
# silicon_arch_name will be one of grayskull, wormhole_b0 etc.
run_model_on_silicon(silicon_arch_name)
...
If you want to restrict a test to only a specific architecture, you can
provide an additional fixture in the form of silicon_arch_<ARCH_NAME>. This
will limit the range of possible values for silicon_arch_name to only be
ARCH_NAME.
@pytest.mark.post_commit
def test_model_silicon_grayskull_only(
silicon_arch_name,
silicon_arch_grayskull,
):
# silicon_arch_name can only be grayskull or empty
run_model_on_silicon(silicon_arch_name)
...
If --tt-arch specifies an architecture that's not ARCH_NAME, the test will
be skipped. We ensure skipping by providing an empty list parametrization
for silicon_arch_name, and with the empty_parameter_set_mark config option
for pytest, will skip any tests with an empty list parametrization.
Note that you must provide silicon_arch_name as a fixture if you want to
use the silicon_arch_<ARCH_NAME> fixture.
Note that if tests want to use the ARCH value from the API, tests should
create their own separate fixture which will convert the string value
provided from silicon_arch_name into ARCH. We keep it as strings here
because these fixtures will be used in tests which do not have access to
any Python APIs.
"""
tt_arch = metafunc.config.getoption("--tt-arch")
silicon_arch_specific_fixture_name_to_avail_archs = {
"silicon_arch_grayskull": set(
[
"grayskull",
]
),
"silicon_arch_wormhole_b0": set(
[
"wormhole_b0",
]
),
}
check_uses_silicon_arch_specific_fixture = partial(contains, silicon_arch_specific_fixture_name_to_avail_archs)
test_requested_silicon_arch_fixtures = tuple(
filter(check_uses_silicon_arch_specific_fixture, metafunc.fixturenames)
)
is_test_requesting_specific_silicon_archs = len(test_requested_silicon_arch_fixtures) > 0
get_archs_for_silicon_arch_specific_fixture = partial(getitem, silicon_arch_specific_fixture_name_to_avail_archs)
test_requested_silicon_archs = ALL_ARCHS.intersection(
*map(
get_archs_for_silicon_arch_specific_fixture,
test_requested_silicon_arch_fixtures,
)
)
available_archs = test_requested_silicon_archs if is_test_requesting_specific_silicon_archs else ALL_ARCHS
matches_user_requested_silicon_arch = partial(eq, tt_arch)
available_archs = tuple(filter(matches_user_requested_silicon_arch, available_archs))
uses_silicon_arch = "silicon_arch_name" in metafunc.fixturenames
# sanity
if is_test_requesting_specific_silicon_archs and not uses_silicon_arch:
raise Exception(
f"{metafunc.function} requesting a specific silicon target, but doesn't use silicon_arch_name fixture"
)
if uses_silicon_arch:
metafunc.parametrize("silicon_arch_name", available_archs, scope="session")
for test_requested_silicon_arch_fixture in test_requested_silicon_arch_fixtures:
# The values of these arch-specific fixtures should not be used in
# the test function, so use any parameters, like [True]
metafunc.parametrize(test_requested_silicon_arch_fixture, [True], scope="session")
input_method = metafunc.config.getoption("--input-method")
if input_method == "json":
json_path = metafunc.config.getoption("--input-path")
if not json_path:
raise ValueError("Please provide a valid JSON path using --input-path option.")
with open(json_path, "r") as f:
data = json.load(f)
metafunc.parametrize("user_input", [data])
elif input_method == "cli":
cli_input = metafunc.config.getoption("--cli-input")
if not cli_input:
raise ValueError("Please provide input using --cli-input option.")
metafunc.parametrize("user_input", [[cli_input]])
# Report stashing to get outcomes etc
phase_report_key = pytest.StashKey()
@pytest.hookimpl(tryfirst=True, hookwrapper=True)
def pytest_runtest_makereport(item, call):
# execute all other hooks to obtain the report object
outcome = yield
rep = outcome.get_result()
# store test results for each phase of a call, which can
# be "setup", "call", "teardown"
item.stash.setdefault(phase_report_key, {})[rep.when] = rep
@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_teardown(item, nextitem):
yield
metal_timeout_enabled = item.config.getoption("--metal-timeout")
using_xdist = int(os.getenv("PYTEST_XDIST_WORKER_COUNT", "0"))
if metal_timeout_enabled is not None or using_xdist:
report = item.stash[phase_report_key]
test_failed = report.get("call", None) and report["call"].failed
if test_failed:
logger.info(f"In custom teardown, open device ids: {set(item.pci_ids)}")
reset_tensix(set(item.pci_ids))
# This is overriding the timer setup hook from pytest-timeout
# If --metal-timeout is passed, we define a new timeout method that spawns a timer process
# At timeout, the process kills it's parent (the test process) and then itself
@pytest.hookimpl(tryfirst=True)
def pytest_timeout_set_timer(item, settings):
metal_timeout_enabled = item.config.getoption("--metal-timeout")
using_xdist = int(os.getenv("PYTEST_XDIST_WORKER_COUNT", "0"))
if metal_timeout_enabled is not None or using_xdist:
parent_pid = os.getpid()
logger.info(f"Metal timeout {settings.timeout} seconds {parent_pid} for {item.nodeid}")
def get_parent_status():
try:
parent = psutil.Process(parent_pid)
except:
return "already dead"
return parent.status()
def run_timer(settings):
logger.info(f"Timer started for {item.nodeid}")
dead_status = ["zombie", "dead", "already dead"]
timeout = settings.timeout
parent_status = "running"
while parent_status not in dead_status and timeout > 0:
time.sleep(5)
timeout -= 5
parent_status = get_parent_status()
if parent_status != "already dead":
logger.warning(f"This test seems to have hung... Timing out test case")
os.kill(parent_pid, signal.SIGKILL)
logger.info(f"Killing timer")
os._exit(1)
def cancel():
logger.info(f"Cancelling timer")
metal_timer.terminate()
metal_timer = multiprocess.Process(target=run_timer, args=(settings,), daemon=True)
item.cancel_timeout = cancel
metal_timer.start()
return True
# This is a hook used in pytest-xdist to handle when a worker crashes out
# In our case, combined with pytest-timeout thread method, the worker will crash out for a hang and
# then it should get cleaned up by the controller through this fixture
@pytest.hookimpl(tryfirst=True)
def pytest_handlecrashitem(crashitem, report, sched):
reset_tensix()
def reset_tensix(tt_open_devices=None):
metal_env = copy.deepcopy(os.environ)
arch = metal_env.get("ARCH_NAME")
if arch != "grayskull" and arch != "wormhole_b0":
raise Exception(f"Unrecognized arch for tensix-reset: {arch}")
if tt_open_devices is None:
logger.info(f"Running reset with reset script: /opt/tt_metal_infra/scripts/ci/{arch}/reset.sh")
smi_reset_result = run_process_and_get_result(f"/opt/tt_metal_infra/scripts/ci/{arch}/reset.sh")
else:
tt_open_devices_str = ",".join([str(i) for i in tt_open_devices])
check_smi_metal = run_process_and_get_result("tt-smi-metal -h")
logger.info(f"Running reset for pci devices: {tt_open_devices_str}")
if check_smi_metal.returncode > 0:
logger.info(f"Test failed - resetting {arch} with tt-smi")
smi_reset_result = run_process_and_get_result(f"tt-smi -r {tt_open_devices_str}")
else:
smi_reset_result = run_process_and_get_result(f"tt-smi-metal -r {tt_open_devices_str}")
logger.info(f"tt-smi reset status: {smi_reset_result.returncode}")
@pytest.hookimpl(tryfirst=True)
def pytest_xdist_auto_num_workers(config):
return 1
@pytest.fixture(scope="function", autouse=True)
def record_test_timestamp(record_property):
start_timestamp = datetime.strftime(datetime.now(), "%Y-%m-%dT%H:%M:%S%z")
record_property("start_timestamp", start_timestamp)
yield
end_timestamp = datetime.strftime(datetime.now(), "%Y-%m-%dT%H:%M:%S%z")
record_property("end_timestamp", end_timestamp)