AWS Batch is a fully managed batch job scheduler service on AWS. It could easily manage large scale job queueing and execution. This tutorial shows a way to use Inferentia within a job on AWS Batch.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<powershell> | |
C:\ProgramData\Amazon\EC2-Windows\Launch\Scripts\InitializeDisks.ps1 | |
</powershell> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example neuron-container dockerfile. by midaisuk | |
# To build: | |
# docker build -t neuron-container . | |
# Prepare application: | |
# before launch the docker image, you need to prepare some files based on the document and upload to S3 bucket. | |
# https://github.com/aws/aws-neuron-sdk/blob/master/docs/tensorflow-neuron/tutorial-compile-infer.md | |
# resnet50_neuron.zip | |
# infer_resnet50.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[aws] | |
aws_region_name = us-east-1 | |
[global] | |
update_check = true | |
sanity_check = true | |
cluster_template = benchmark_efa | |
[aliases] | |
ssh = ssh {CFN_USER}@{MASTER_IP} {ARGS} -i ~/.ssh/<KEYNAME> -o StrictHostKeyChecking=no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################################################################### | |
# Create compute environment and job queue for AWS Batch with Boto3 | |
# Daisuke Miyamoto | |
# 20200330 | |
# | |
import boto3 | |
import botocore.waiter | |
from botocore.exceptions import WaiterError | |
import time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
AWSTemplateFormatVersion: 2010-09-09 | |
Description: Creates an Amazon CloudWatch dashboard with Metric Math expressions to monitor an Amazon EFS file system. Customized for exclude IAM permissions. | |
Metadata: | |
Authors: | |
Description: Darryl Osborne ([email protected]) / Modified by midaisuk@ | |
License: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
AWSTemplateFormatVersion: 2010-09-09 | |
Description: Creates an Amazon CloudWatch dashboard with Metric Math expressions to monitor an Amazon EFS file system. It also includes a file system size custom metric to display the metered size of the file system. | |
Metadata: | |
Authors: | |
Description: Darryl Osborne ([email protected]) | |
License: |