Skip to content

Commit 2defc96

Browse files
committed
Revert "Update ['dlc_developer_config.toml']"
This reverts commit bf2be3b.
1 parent bf2be3b commit 2defc96

File tree

1 file changed

+96
-9
lines changed

1 file changed

+96
-9
lines changed

dlc_developer_config.toml

Lines changed: 96 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,167 @@
11
[dev]
2+
# Set to "huggingface", for example, if you are a huggingface developer. Default is ""
23
partner_developer = ""
4+
# Please only set it to true if you are preparing an EI related PR
5+
# Do remember to revert it back to false before merging any PR (including EI dedicated PR)
36
ei_mode = false
7+
# Please only set it to true if you are preparing a NEURON related PR
8+
# Do remember to revert it back to false before merging any PR (including NEURON dedicated PR)
49
neuron_mode = false
5-
neuronx_mode = true
10+
# Please only set it to true if you are preparing a NEURONX related PR
11+
# Do remember to revert it back to false before merging any PR (including NEURONX dedicated PR)
12+
neuronx_mode = false
13+
# Please only set it to true if you are preparing a GRAVITON related PR
14+
# Do remember to revert it back to false before merging any PR (including GRAVITON dedicated PR)
615
graviton_mode = false
16+
# Please only set it to true if you are preparing a ARM64 related PR
17+
# Do remember to revert it back to false before merging any PR (including ARM64 dedicated PR)
718
arm64_mode = false
19+
# Please only set it to True if you are preparing a HABANA related PR
20+
# Do remember to revert it back to False before merging any PR (including HABANA dedicated PR)
821
habana_mode = false
22+
# Please only set it to True if you are preparing a HUGGINGFACE TRCOMP related PR
23+
# Do remember to revert it back to False before merging any PR (including HUGGINGFACE TRCOMP dedicated PR)
24+
# This mode is used to build TF 2.6 and PT1.11 DLC
925
huggingface_trcomp_mode = false
26+
# Please only set it to True if you are preparing a TRCOMP related PR
27+
# Do remember to revert it back to False before merging any PR (including TRCOMP dedicated PR)
28+
# This mode is used to build PT1.12 and above DLC
1029
trcomp_mode = false
30+
# Set deep_canary_mode to true to simulate Deep Canary Test conditions on PR for all frameworks in the
31+
# build_frameworks list below. This will cause all image builds and non-deep-canary tests on the PR to be skipped,
32+
# regardless of whether they are enabled or disabled below.
33+
# Set graviton_mode/arm64_mode to true to run Deep Canaries on Graviton/ARM64 images.
34+
# Do remember to revert it back to false before merging any PR.
1135
deep_canary_mode = false
1236

1337
[build]
14-
build_frameworks = [ "huggingface_pytorch",]
38+
# Add in frameworks you would like to build. By default, builds are disabled unless you specify building an image.
39+
# available frameworks - ["autogluon", "huggingface_tensorflow", "huggingface_pytorch", "huggingface_tensorflow_trcomp", "huggingface_pytorch_trcomp", "pytorch_trcomp", "tensorflow", "mxnet", "pytorch", "stabilityai_pytorch"]
40+
build_frameworks = []
41+
42+
# By default we build both training and inference containers. Set true/false values to determine which to build.
1543
build_training = true
16-
build_inference = false
44+
build_inference = true
45+
46+
# Set do_build to "false" to skip builds and test the latest image built by this PR
47+
# Note: at least one build is required to set do_build to "false"
1748
do_build = true
1849

1950
[notify]
51+
### Notify on test failures
52+
### Off by default
2053
notify_test_failures = false
21-
notification_severity = "medium"
54+
# Valid values: medium or high
55+
notification_severity = "medium"
2256

2357
[test]
58+
### On by default
2459
sanity_tests = true
2560
security_tests = true
26-
safety_check_test = false
27-
ecr_scan_allowlist_feature = false
61+
safety_check_test = false
62+
ecr_scan_allowlist_feature = false
2863
ecs_tests = true
2964
eks_tests = true
3065
ec2_tests = true
66+
# Set it to true if you are preparing a Benchmark related PR
3167
ec2_benchmark_tests = false
68+
69+
### Set ec2_tests_on_heavy_instances = true to be able to run any EC2 tests that use large/expensive instance types by
70+
### default. If false, these types of tests will be skipped while other tests will run as usual.
71+
### These tests are run in EC2 test jobs, so ec2_tests must be true if ec2_tests_on_heavy_instances is true.
72+
### Off by default (set to false)
3273
ec2_tests_on_heavy_instances = false
74+
75+
### SM specific tests
76+
### On by default
3377
sagemaker_local_tests = true
78+
79+
# run standard sagemaker remote tests from test/sagemaker_tests
3480
sagemaker_remote_tests = true
81+
# run efa sagemaker tests
3582
sagemaker_efa_tests = false
83+
# run release_candidate_integration tests
3684
sagemaker_rc_tests = false
85+
# run sagemaker benchmark tests
3786
sagemaker_benchmark_tests = false
87+
88+
# SM remote EFA test instance type
3889
sagemaker_remote_efa_instance_type = ""
90+
91+
# Run CI tests for nightly images
92+
# false by default
3993
nightly_pr_test_mode = false
94+
4095
use_scheduler = false
4196

4297
[buildspec_override]
98+
# Assign the path to the required buildspec file from the deep-learning-containers folder
99+
# For example:
100+
# dlc-pr-tensorflow-2-habana-training = "habana/tensorflow/training/buildspec-2-10.yml"
101+
# dlc-pr-pytorch-inference = "pytorch/inference/buildspec-1-12.yml"
102+
# Setting the buildspec file path to "" allows the image builder to choose the default buildspec file.
103+
104+
### TRAINING PR JOBS ###
105+
106+
# Standard Framework Training
43107
dlc-pr-mxnet-training = ""
44108
dlc-pr-pytorch-training = ""
45109
dlc-pr-tensorflow-2-training = ""
46110
dlc-pr-autogluon-training = ""
111+
112+
# HuggingFace Training
47113
dlc-pr-huggingface-tensorflow-training = ""
48114
dlc-pr-huggingface-pytorch-training = ""
115+
116+
# Training Compiler
49117
dlc-pr-huggingface-pytorch-trcomp-training = ""
50118
dlc-pr-huggingface-tensorflow-2-trcomp-training = ""
51119
dlc-pr-pytorch-trcomp-training = ""
120+
121+
# Neuron Training
52122
dlc-pr-mxnet-neuron-training = ""
53123
dlc-pr-pytorch-neuron-training = ""
54124
dlc-pr-tensorflow-2-neuron-training = ""
125+
126+
# Stability AI Training
55127
dlc-pr-stabilityai-pytorch-training = ""
128+
129+
# Habana Training
56130
dlc-pr-pytorch-habana-training = ""
57131
dlc-pr-tensorflow-2-habana-training = ""
132+
133+
### INFERENCE PR JOBS ###
134+
135+
# Standard Framework Inference
58136
dlc-pr-mxnet-inference = ""
59137
dlc-pr-pytorch-inference = ""
60138
dlc-pr-tensorflow-2-inference = ""
61139
dlc-pr-autogluon-inference = ""
140+
141+
# Neuron Inference
62142
dlc-pr-mxnet-neuron-inference = ""
63143
dlc-pr-pytorch-neuron-inference = ""
64144
dlc-pr-tensorflow-1-neuron-inference = ""
65145
dlc-pr-tensorflow-2-neuron-inference = ""
146+
147+
# HuggingFace Inference
66148
dlc-pr-huggingface-tensorflow-inference = ""
67149
dlc-pr-huggingface-pytorch-inference = ""
68150
dlc-pr-huggingface-pytorch-neuron-inference = ""
151+
152+
# Stability AI Inference
69153
dlc-pr-stabilityai-pytorch-inference = ""
154+
155+
# Graviton Inference
70156
dlc-pr-mxnet-graviton-inference = ""
71157
dlc-pr-pytorch-graviton-inference = ""
72158
dlc-pr-tensorflow-2-graviton-inference = ""
159+
160+
# ARM64 Inference
73161
dlc-pr-pytorch-arm64-inference = ""
74162
dlc-pr-tensorflow-2-arm64-inference = ""
163+
164+
# EIA Inference
75165
dlc-pr-mxnet-eia-inference = ""
76166
dlc-pr-pytorch-eia-inference = ""
77167
dlc-pr-tensorflow-2-eia-inference = ""
78-
# WARNING: Unrecognized key generated below
79-
dlc-pr-huggingface-pytorch-neuronx-training = "huggingface/pytorch/training/buildspec-neuronx.yml"
80-

0 commit comments

Comments
 (0)