forked from pytorch/torchtitan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
30 lines (24 loc) · 755 Bytes
/
Copy path__init__.py
File metadata and controls
30 lines (24 loc) · 755 Bytes
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
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
from collections.abc import Sequence
from dataclasses import dataclass
__all__ = [
"OverrideDefinitions",
]
@dataclass
class OverrideDefinitions:
"""
This class is used to define the override definitions for the integration tests.
"""
override_args: Sequence[Sequence[str]] = tuple(tuple(" "))
test_descr: str = "default"
test_name: str = "default"
ngpu: int = 4
disabled: bool = False
skip_rocm_test: bool = False
timeout: int | None = None
def __repr__(self):
return self.test_descr