Skip to content

Commit dde6133

Browse files
author
Dan
authored
Merge branch 'master' into inference-id
2 parents bdff55c + 2904cd3 commit dde6133

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## v2.26.0 (2021-02-26)
4+
5+
### Features
6+
7+
* Add Framework Version support for PyTorch compilation (Neo)
8+
9+
### Bug Fixes and Other Changes
10+
11+
* add mxnet 1.7.0 eia configuration
12+
* update source constructor for lineage action and artifact
13+
14+
### Documentation Changes
15+
16+
* fix typo in create_monitoring_schedule method
17+
318
## v2.25.2 (2021-02-25)
419

520
### Bug Fixes and Other Changes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.25.3.dev0
1+
2.26.1.dev0

src/sagemaker/estimator.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,9 @@ def __init__(
349349
self.profiler_config = profiler_config
350350
self.disable_profiler = disable_profiler
351351

352+
if not _region_supports_profiler(self.sagemaker_session.boto_region_name):
353+
self.disable_profiler = True
354+
352355
self.profiler_rule_configs = None
353356
self.profiler_rules = None
354357
self.debugger_rules = None

0 commit comments

Comments
 (0)