Skip to content

Commit

Permalink
Add support for aarch64
Browse files Browse the repository at this point in the history
Change-Id: I5b80e63bde83ee0e203cdf4852bc44ec68059692
Signed-off-by: Henry Wang <henry.wang@arm.com>
Jira: ENTOS-1324
  • Loading branch information
MrXinWang committed Nov 1, 2019
1 parent de4847c commit 2521555
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions py/kubeflow/tf_operator/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def run(command, cwd=None, env=None, dryrun=False):
goarch = "amd64"
if platform.machine() == "ppc64le":
goarch = "ppc64le"
elif platform.machine() == "aarch64":
goarch = "arm64"
extra_envs = {"GOOS": "linux", "GOARCH": goarch}

if not env:
Expand Down

0 comments on commit 2521555

Please sign in to comment.