├── .gitignore ├── Azure Batch Masterclass Labs ├── BatchLabs Setup 0.7.0.exe ├── README.md ├── azure-batch-labs.png ├── azure-storage-mp4.png ├── batchlabs-jobprogress.png ├── batchlabs-pools.png ├── ffmpeg-cli │ ├── file_upload.sh │ ├── job-ffmpeg.json │ ├── job_create.sh │ ├── pool-ffmpeg.json │ ├── pool_create.sh │ ├── pool_delete.sh │ └── samples │ │ └── prep_samples.sh ├── job-ffmpeg.json ├── linux-vm-ssh.png └── pool-ffmpeg.json ├── Azure_Iaas ├── README.md ├── create_vm.sh ├── create_vmss.sh ├── delete_vm.sh ├── delete_vmss.sh ├── local_provision.sh ├── provision.sh ├── scale_vmss.sh ├── show_vm.sh └── show_vmss.sh ├── CycleCloud-vFXT-EDA ├── README.md ├── images │ ├── airlift-openhack-arch.png │ ├── cadence-application.png │ ├── cadence-cluster-init-select.png │ ├── cluster-init-select.png │ ├── messages-install-wait.png │ ├── pbs-variant.png │ ├── vfxt-cluster-select.png │ └── vfxt-subnet.png ├── projects │ └── xcelium │ │ ├── blobs │ │ └── unknown80httpbasic │ │ ├── project.ini │ │ └── specs │ │ ├── default │ │ └── cluster-init │ │ │ └── scripts │ │ │ └── 040.runtime.profile.sh │ │ └── install │ │ └── cluster-init │ │ ├── files │ │ ├── even_larger.sv │ │ ├── example.sv │ │ ├── large.sv │ │ ├── run_xcelium.sh │ │ └── setup_workbench.sh │ │ └── scripts │ │ ├── 050.install.sh │ │ ├── 055.copy_to_filer.sh │ │ └── 060.add_examples.sh └── ssh │ ├── cyclecloud.pem │ └── id_rsa_container ├── CycleCloud └── 01-Setup CycleCloud with ARM │ ├── README.md │ ├── cyclecloud_install.py │ ├── deploy-cyclecloud.json │ ├── deploy-vnet.json │ ├── images │ ├── CC - Cloud Provider Account Created.png │ ├── CC - Cloud Provider Account Prompt.png │ ├── CC - Cluster Autoscaling.png │ ├── CC - Cluster Manual Scaling.png │ ├── CC - Cluster Start Link.png │ ├── CC - Cluster Termination.png │ ├── CC - Connect button.png │ ├── CC - New Cluster - Cluster Converged.png │ ├── CC - New Cluster - Cluster Created.png │ ├── CC - New Cluster - Cluster Started.png │ ├── CC - New Cluster - Cluster Usage Alert Set.png │ ├── CC - New Cluster - Cluster Usage Alert.png │ ├── CC - New Cluster - Share Cluster - User Perms.png │ ├── CC - New Cluster - Share Cluster.png │ ├── CC - New Cluster.png │ ├── CC - New GE Cluster - Cluster Software - No CI.png │ ├── CC - New GE Cluster - Cluster Software.png │ ├── CC - New GE Cluster - Compute Backend.png │ ├── CC - New GE Cluster - General Settings.png │ └── CC - New GE Cluster - Networking.png │ ├── params-cyclecloud.json │ └── params-vnet.json ├── Genomics Big Compute Lab ├── README.md ├── sequencing-workflow-to-vcf.png └── setup-genomics-software.sh ├── HPC Containers Lab └── README.md ├── HPC Data Transfer Lab └── README.md ├── HPC-Cloud-Workshop-FY18-FullDeck-2march2018.pdf ├── Microscopy_Lab ├── 00.Upload.sh ├── 01.redeploy.sh ├── 02.run_job.sh ├── 03.download_output.sh ├── 04.diagnose.sh ├── README.md ├── deploy_script.sh ├── pool-shipyard.json ├── resources │ ├── demoOrig.gif │ └── demoSmall.gif ├── run_job.sh └── run_task.sh ├── Microsoft HPC Pack Lab └── README.md ├── README.md ├── Remote Visualization Labs ├── README.md └── vncgpu.png ├── TBD ├── GPU Compute Labs │ └── README.md ├── HPC RDMA Cluster Lab │ └── README.md └── Rendering and Transcoding Labs │ └── README.md └── UK-Partner-Labs.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/BatchLabs Setup 0.7.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/BatchLabs Setup 0.7.0.exe -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/README.md -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/azure-batch-labs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/azure-batch-labs.png -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/azure-storage-mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/azure-storage-mp4.png -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/batchlabs-jobprogress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/batchlabs-jobprogress.png -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/batchlabs-pools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/batchlabs-pools.png -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/ffmpeg-cli/file_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/ffmpeg-cli/file_upload.sh -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/ffmpeg-cli/job-ffmpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/ffmpeg-cli/job-ffmpeg.json -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/ffmpeg-cli/job_create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/ffmpeg-cli/job_create.sh -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/ffmpeg-cli/pool-ffmpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/ffmpeg-cli/pool-ffmpeg.json -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/ffmpeg-cli/pool_create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/ffmpeg-cli/pool_create.sh -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/ffmpeg-cli/pool_delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/ffmpeg-cli/pool_delete.sh -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/ffmpeg-cli/samples/prep_samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/ffmpeg-cli/samples/prep_samples.sh -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/job-ffmpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/job-ffmpeg.json -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/linux-vm-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/linux-vm-ssh.png -------------------------------------------------------------------------------- /Azure Batch Masterclass Labs/pool-ffmpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure Batch Masterclass Labs/pool-ffmpeg.json -------------------------------------------------------------------------------- /Azure_Iaas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/README.md -------------------------------------------------------------------------------- /Azure_Iaas/create_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/create_vm.sh -------------------------------------------------------------------------------- /Azure_Iaas/create_vmss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/create_vmss.sh -------------------------------------------------------------------------------- /Azure_Iaas/delete_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/delete_vm.sh -------------------------------------------------------------------------------- /Azure_Iaas/delete_vmss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/delete_vmss.sh -------------------------------------------------------------------------------- /Azure_Iaas/local_provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/local_provision.sh -------------------------------------------------------------------------------- /Azure_Iaas/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/provision.sh -------------------------------------------------------------------------------- /Azure_Iaas/scale_vmss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/scale_vmss.sh -------------------------------------------------------------------------------- /Azure_Iaas/show_vm.sh: -------------------------------------------------------------------------------- 1 | az vm list-ip-addresses -o table 2 | -------------------------------------------------------------------------------- /Azure_Iaas/show_vmss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Azure_Iaas/show_vmss.sh -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/README.md -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/images/airlift-openhack-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/images/airlift-openhack-arch.png -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/images/cadence-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/images/cadence-application.png -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/images/cadence-cluster-init-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/images/cadence-cluster-init-select.png -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/images/cluster-init-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/images/cluster-init-select.png -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/images/messages-install-wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/images/messages-install-wait.png -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/images/pbs-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/images/pbs-variant.png -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/images/vfxt-cluster-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/images/vfxt-cluster-select.png -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/images/vfxt-subnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/images/vfxt-subnet.png -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/blobs/unknown80httpbasic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/blobs/unknown80httpbasic -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/project.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/project.ini -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/default/cluster-init/scripts/040.runtime.profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/default/cluster-init/scripts/040.runtime.profile.sh -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/even_larger.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/even_larger.sv -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/example.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/example.sv -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/large.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/large.sv -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/run_xcelium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/run_xcelium.sh -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/setup_workbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/files/setup_workbench.sh -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/scripts/050.install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/scripts/050.install.sh -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/scripts/055.copy_to_filer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/scripts/055.copy_to_filer.sh -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/scripts/060.add_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/projects/xcelium/specs/install/cluster-init/scripts/060.add_examples.sh -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/ssh/cyclecloud.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/ssh/cyclecloud.pem -------------------------------------------------------------------------------- /CycleCloud-vFXT-EDA/ssh/id_rsa_container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud-vFXT-EDA/ssh/id_rsa_container -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/README.md -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/cyclecloud_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/cyclecloud_install.py -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/deploy-cyclecloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/deploy-cyclecloud.json -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/deploy-vnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/deploy-vnet.json -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cloud Provider Account Created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cloud Provider Account Created.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cloud Provider Account Prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cloud Provider Account Prompt.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cluster Autoscaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cluster Autoscaling.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cluster Manual Scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cluster Manual Scaling.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cluster Start Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cluster Start Link.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cluster Termination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - Cluster Termination.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - Connect button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - Connect button.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Converged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Converged.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Created.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Started.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Usage Alert Set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Usage Alert Set.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Usage Alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Cluster Usage Alert.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Share Cluster - User Perms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Share Cluster - User Perms.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Share Cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster - Share Cluster.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New Cluster.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - Cluster Software - No CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - Cluster Software - No CI.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - Cluster Software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - Cluster Software.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - Compute Backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - Compute Backend.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - General Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - General Settings.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - Networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/images/CC - New GE Cluster - Networking.png -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/params-cyclecloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/params-cyclecloud.json -------------------------------------------------------------------------------- /CycleCloud/01-Setup CycleCloud with ARM/params-vnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/CycleCloud/01-Setup CycleCloud with ARM/params-vnet.json -------------------------------------------------------------------------------- /Genomics Big Compute Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Genomics Big Compute Lab/README.md -------------------------------------------------------------------------------- /Genomics Big Compute Lab/sequencing-workflow-to-vcf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Genomics Big Compute Lab/sequencing-workflow-to-vcf.png -------------------------------------------------------------------------------- /Genomics Big Compute Lab/setup-genomics-software.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Genomics Big Compute Lab/setup-genomics-software.sh -------------------------------------------------------------------------------- /HPC Containers Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/HPC Containers Lab/README.md -------------------------------------------------------------------------------- /HPC Data Transfer Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/HPC Data Transfer Lab/README.md -------------------------------------------------------------------------------- /HPC-Cloud-Workshop-FY18-FullDeck-2march2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/HPC-Cloud-Workshop-FY18-FullDeck-2march2018.pdf -------------------------------------------------------------------------------- /Microscopy_Lab/00.Upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/00.Upload.sh -------------------------------------------------------------------------------- /Microscopy_Lab/01.redeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/01.redeploy.sh -------------------------------------------------------------------------------- /Microscopy_Lab/02.run_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/02.run_job.sh -------------------------------------------------------------------------------- /Microscopy_Lab/03.download_output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/03.download_output.sh -------------------------------------------------------------------------------- /Microscopy_Lab/04.diagnose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/04.diagnose.sh -------------------------------------------------------------------------------- /Microscopy_Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/README.md -------------------------------------------------------------------------------- /Microscopy_Lab/deploy_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/deploy_script.sh -------------------------------------------------------------------------------- /Microscopy_Lab/pool-shipyard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/pool-shipyard.json -------------------------------------------------------------------------------- /Microscopy_Lab/resources/demoOrig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/resources/demoOrig.gif -------------------------------------------------------------------------------- /Microscopy_Lab/resources/demoSmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/resources/demoSmall.gif -------------------------------------------------------------------------------- /Microscopy_Lab/run_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/run_job.sh -------------------------------------------------------------------------------- /Microscopy_Lab/run_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Microscopy_Lab/run_task.sh -------------------------------------------------------------------------------- /Microsoft HPC Pack Lab/README.md: -------------------------------------------------------------------------------- 1 | # Microsoft HPC Pack Lab # 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/README.md -------------------------------------------------------------------------------- /Remote Visualization Labs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Remote Visualization Labs/README.md -------------------------------------------------------------------------------- /Remote Visualization Labs/vncgpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/Remote Visualization Labs/vncgpu.png -------------------------------------------------------------------------------- /TBD/GPU Compute Labs/README.md: -------------------------------------------------------------------------------- 1 | # GPU Compute Labs # 2 | -------------------------------------------------------------------------------- /TBD/HPC RDMA Cluster Lab/README.md: -------------------------------------------------------------------------------- 1 | # HPC RDMA Cluster / IaaS (Infrastructure-as-a-Service) Lab # 2 | -------------------------------------------------------------------------------- /TBD/Rendering and Transcoding Labs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/TBD/Rendering and Transcoding Labs/README.md -------------------------------------------------------------------------------- /UK-Partner-Labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azurebigcompute/BigComputeLabs/HEAD/UK-Partner-Labs.md --------------------------------------------------------------------------------