Files
concrete/ci/slab.toml
2023-03-15 15:34:50 +01:00

73 lines
2.1 KiB
TOML

[profile.m6i-cpu-bench]
region = "eu-west-3"
image_id = "ami-0a24aaee029d1295c" # Based on Ubuntu 22.4
instance_type = "m6i.metal"
subnet_id = "subnet-a886b4c1"
security_group= ["sg-0bf1c1d79c97bc88f", ]
[profile.m6i-cpu-test]
region = "eu-west-3"
image_id = "ami-0a24aaee029d1295c"
instance_type = "m6i.16xlarge"
subnet_id = "subnet-a886b4c1"
security_group= ["sg-0bf1c1d79c97bc88f", ]
[profile.m6i-metal]
region = "eu-west-3"
image_id = "ami-0a24aaee029d1295c"
instance_type = "m6i.metal"
subnet_id = "subnet-a886b4c1"
security_group= ["sg-0bf1c1d79c97bc88f", ]
[profile.gpu-bench]
region = "us-east-1"
image_id = "ami-03f11dc8c6a5f5c0a"
instance_type = "p3.2xlarge"
subnet_id = "subnet-8123c9e7"
security_group= ["sg-0f8b52622a2669491", ]
# Docker is well configured for test inside docker in this AMI
[profile.gpu-test]
region = "us-east-1"
image_id = "ami-0c4773f5626d919b6"
instance_type = "p3.2xlarge"
subnet_id = "subnet-8123c9e7"
security_group= ["sg-0f8b52622a2669491", ]
#################################################
# Compiler commands
#################################################
[command.compiler-cpu-build]
workflow = "compiler_build_and_test_cpu.yml"
profile = "m6i-cpu-test"
check_run_name = "Compiler Build and Test (CPU)"
[command.compiler-gpu-build]
workflow = "compiler_build_and_test_gpu.yml"
profile = "gpu-test"
check_run_name = "Compiler Build and Test (GPU)"
[command.compiler-cpu-benchmark]
workflow = "compiler_benchmark.yml"
profile = "m6i-cpu-bench"
check_run_name = "Compiler Performances Benchmarks (CPU)"
[command.compiler-gpu-benchmark]
workflow = "compiler_benchmark.yml"
profile = "gpu-bench"
check_run_name = "Compiler Performances Benchmarks (GPU)"
# Trigger Docker images build
[command.compiler-publish-docker-images]
workflow = "compiler_publish_docker_images.yml"
profile = "m6i-cpu-test"
check_run_name = "Compiler - Docker images build & publish"
# Trigger ML benchmarks by running each use cases subset in parallel.
[command.ml-bench]
workflow = "ml_benchmark_subset.yml"
profile = "m6i-cpu-bench"
matrix = [0,1,2,3,4,5,6,7,8,9,10]
max_parallel_jobs = 2