Mercurial > hg > aimc
annotate scripts/run_ami.sh @ 610:01986636257a
Second check-in of Alex Brandmeyer's C++ implementation of CARFAC. Addressed style issues and completed implementation of remaining functions. Still needs proper testing of the output stages against the MATLAB version, and runtime functions need improvements in efficiency.
author | alexbrandmeyer |
---|---|
date | Thu, 16 May 2013 17:33:23 +0000 |
parents | 5e888fbaaa80 |
children |
rev | line source |
---|---|
tomwalters@29 | 1 #!/bin/bash |
tomwalters@29 | 2 ec2-run-instances \ |
tomwalters@29 | 3 --user-data-file ec2_user_data.sh \ |
tomwalters@29 | 4 --key tom_eu_west \ |
tomwalters@29 | 5 --instance-type m1.small \ |
tomwalters@29 | 6 --instance-count 1 \ |
tomwalters@29 | 7 --region eu-west-1 \ |
tomwalters@29 | 8 --availability-zone eu-west-1b \ |
tomwalters@29 | 9 ami-2fc2e95b |
tomwalters@29 | 10 |
tomwalters@29 | 11 ec2-attach-volume vol-d6fb18bf -i [INSTANCE_ID] -d /dev/sdf --region eu-west-1 |