Skip to content

Commit 5b8988c

Browse files
authored
Remove mxnet builds from dev config (#4487)
1 parent a782260 commit 5b8988c

File tree

2 files changed

+1
-24
lines changed

2 files changed

+1
-24
lines changed

dlc_developer_config.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ deep_canary_mode = false
3636

3737
[build]
3838
# 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"]
39+
# available frameworks - ["autogluon", "huggingface_tensorflow", "huggingface_pytorch", "huggingface_tensorflow_trcomp", "huggingface_pytorch_trcomp", "pytorch_trcomp", "tensorflow", "pytorch", "stabilityai_pytorch"]
4040
build_frameworks = []
4141

4242
# By default we build both training and inference containers. Set true/false values to determine which to build.
@@ -104,7 +104,6 @@ use_scheduler = false
104104
### TRAINING PR JOBS ###
105105

106106
# Standard Framework Training
107-
dlc-pr-mxnet-training = ""
108107
dlc-pr-pytorch-training = ""
109108
dlc-pr-tensorflow-2-training = ""
110109
dlc-pr-autogluon-training = ""
@@ -119,7 +118,6 @@ dlc-pr-huggingface-tensorflow-2-trcomp-training = ""
119118
dlc-pr-pytorch-trcomp-training = ""
120119

121120
# Neuron Training
122-
dlc-pr-mxnet-neuron-training = ""
123121
dlc-pr-pytorch-neuron-training = ""
124122
dlc-pr-tensorflow-2-neuron-training = ""
125123

@@ -133,13 +131,11 @@ dlc-pr-tensorflow-2-habana-training = ""
133131
### INFERENCE PR JOBS ###
134132

135133
# Standard Framework Inference
136-
dlc-pr-mxnet-inference = ""
137134
dlc-pr-pytorch-inference = ""
138135
dlc-pr-tensorflow-2-inference = ""
139136
dlc-pr-autogluon-inference = ""
140137

141138
# Neuron Inference
142-
dlc-pr-mxnet-neuron-inference = ""
143139
dlc-pr-pytorch-neuron-inference = ""
144140
dlc-pr-tensorflow-1-neuron-inference = ""
145141
dlc-pr-tensorflow-2-neuron-inference = ""
@@ -153,7 +149,6 @@ dlc-pr-huggingface-pytorch-neuron-inference = ""
153149
dlc-pr-stabilityai-pytorch-inference = ""
154150

155151
# Graviton Inference
156-
dlc-pr-mxnet-graviton-inference = ""
157152
dlc-pr-pytorch-graviton-inference = ""
158153
dlc-pr-tensorflow-2-graviton-inference = ""
159154

@@ -162,6 +157,5 @@ dlc-pr-pytorch-arm64-inference = ""
162157
dlc-pr-tensorflow-2-arm64-inference = ""
163158

164159
# EIA Inference
165-
dlc-pr-mxnet-eia-inference = ""
166160
dlc-pr-pytorch-eia-inference = ""
167161
dlc-pr-tensorflow-2-eia-inference = ""

test/dlc_tests/sanity/quick_checks/test_dlc_developer_config.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ def test_build_version_override_configuration():
9090
"""
9191
Ensure that buildspec override defaults are set back to normal before merge
9292
"""
93-
assert config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-mxnet-training") == ""
9493
assert config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-pytorch-training") == ""
9594
assert (
9695
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-tensorflow-2-training")
@@ -130,10 +129,6 @@ def test_build_version_override_configuration():
130129
== ""
131130
)
132131

133-
assert (
134-
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-mxnet-neuron-training")
135-
== ""
136-
)
137132
assert (
138133
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-pytorch-neuron-training")
139134
== ""
@@ -163,7 +158,6 @@ def test_build_version_override_configuration():
163158
== ""
164159
)
165160

166-
assert config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-mxnet-inference") == ""
167161
assert (
168162
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-pytorch-inference") == ""
169163
)
@@ -175,10 +169,6 @@ def test_build_version_override_configuration():
175169
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-autogluon-inference") == ""
176170
)
177171

178-
assert (
179-
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-mxnet-neuron-inference")
180-
== ""
181-
)
182172
assert (
183173
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-pytorch-neuron-inference")
184174
== ""
@@ -221,10 +211,6 @@ def test_build_version_override_configuration():
221211
== ""
222212
)
223213

224-
assert (
225-
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-mxnet-graviton-inference")
226-
== ""
227-
)
228214
assert (
229215
config.parse_dlc_developer_configs(
230216
"buildspec_override", "dlc-pr-pytorch-graviton-inference"
@@ -249,9 +235,6 @@ def test_build_version_override_configuration():
249235
== ""
250236
)
251237

252-
assert (
253-
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-mxnet-eia-inference") == ""
254-
)
255238
assert (
256239
config.parse_dlc_developer_configs("buildspec_override", "dlc-pr-pytorch-eia-inference")
257240
== ""

0 commit comments

Comments
 (0)