feat: add app/data directory with consumer_gpu_profiles
All checks were successful
API Endpoint Tests / test-api-endpoints (push) Successful in 1m22s
Integration Tests / test-service-integration (push) Successful in 2m9s
Python Tests / test-python (push) Successful in 11s
Security Scanning / security-scan (push) Successful in 30s

This commit is contained in:
aitbc
2026-04-20 13:06:49 +02:00
parent ca8b201f64
commit e3804f84e4
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1 @@
# Data package for AITBC Coordinator API

View File

@@ -0,0 +1,31 @@
"""Consumer GPU profiles data for edge GPU service"""
CONSUMER_GPU_PROFILES = {
"gtx_1660": {
"name": "NVIDIA GTX 1660",
"architecture": "Turing",
"memory_gb": 6,
"compute_capability": "7.5",
"power_watts": 120,
"performance_score": 0.6,
"supported_tasks": ["llm_inference", "image_generation", "video_processing"]
},
"rtx_3060": {
"name": "NVIDIA RTX 3060",
"architecture": "Ampere",
"memory_gb": 12,
"compute_capability": "8.6",
"power_watts": 170,
"performance_score": 0.8,
"supported_tasks": ["llm_inference", "llm_training", "image_generation", "video_processing"]
},
"rtx_4090": {
"name": "NVIDIA RTX 4090",
"architecture": "Ada Lovelace",
"memory_gb": 24,
"compute_capability": "8.9",
"power_watts": 450,
"performance_score": 1.0,
"supported_tasks": ["llm_inference", "llm_training", "image_generation", "video_processing", "scientific_computing"]
}
}