Skip to content

Commit c007f72

Browse files
chuyang-dengChuyang Denglaurenyu
authored
feature: MXNet elastic inference support (#1506)
* feature: MXNet elastic inference support * update README Co-authored-by: Chuyang Deng <[email protected]> Co-authored-by: Lauren Yu <[email protected]>
1 parent a49cec2 commit c007f72

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ By using MXNet SageMaker Estimators, you can train and host MXNet models on Amaz
205205

206206
Supported versions of MXNet: ``0.12.1``, ``1.0.0``, ``1.1.0``, ``1.2.1``, ``1.3.0``, ``1.4.0``, ``1.4.1``, ``1.6.0``.
207207

208-
Supported versions of MXNet for Elastic Inference: ``1.3.0``, ``1.4.0``, ``1.4.1``.
208+
Supported versions of MXNet for Elastic Inference: ``1.3.0``, ``1.4.0``, ``1.4.1``, ``1.5.1``.
209209

210210
We recommend that you use the latest supported version, because that's where we focus most of our development efforts.
211211

src/sagemaker/mxnet/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ With the SageMaker Python SDK, you can train and host MXNet models on Amazon Sag
66

77
Supported versions of MXNet: ``0.12.1``, ``1.0.0``, ``1.1.0``, ``1.2.1``, ``1.3.0``, ``1.4.0``, ``1.4.1``, ``1.6.0``.
88

9-
Supported versions of MXNet for Elastic Inference: ``1.3.0``, ``1.4.0``, ``1.4.1``.
9+
Supported versions of MXNet for Elastic Inference: ``1.3.0``, ``1.4.0``, ``1.4.1``, ``1.5.1``.
1010

1111
Supported versions of MXNet for Inferentia: ``1.5.1``.
1212

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def pytest_addoption(parser):
5050
parser.addoption("--boto-config", action="store", default=None)
5151
parser.addoption("--chainer-full-version", action="store", default=Chainer.LATEST_VERSION)
5252
parser.addoption("--mxnet-full-version", action="store", default=MXNet.LATEST_VERSION)
53-
parser.addoption("--ei-mxnet-full-version", action="store", default="1.4.1")
53+
parser.addoption("--ei-mxnet-full-version", action="store", default="1.5.1")
5454
parser.addoption("--pytorch-full-version", action="store", default=PyTorch.LATEST_VERSION)
5555
parser.addoption(
5656
"--rl-coach-mxnet-full-version",

tests/unit/test_fw_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,13 +337,13 @@ def test_mxnet_eia_images():
337337
"us-east-1",
338338
"mxnet-serving",
339339
"ml.c4.2xlarge",
340-
"1.4.1",
340+
"1.5.1",
341341
"py3",
342342
accelerator_type="ml.eia1.large",
343343
)
344344
assert (
345345
image_uri
346-
== "{}.dkr.ecr.us-east-1.amazonaws.com/mxnet-inference-eia:1.4.1-cpu-py3".format(
346+
== "{}.dkr.ecr.us-east-1.amazonaws.com/mxnet-inference-eia:1.5.1-cpu-py3".format(
347347
fw_utils.ASIMOV_PROD_ACCOUNT
348348
)
349349
)

0 commit comments

Comments
 (0)