Some checks failed
API Endpoint Tests / test-api-endpoints (push) Successful in 22s
Blockchain Synchronization Verification / sync-verification (push) Successful in 3s
CLI Tests / test-cli (push) Failing after 13s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Failing after 3s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 3s
Cross-Chain Functionality Tests / test-cross-chain-bridge (push) Has been skipped
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Failing after 3s
Cross-Chain Functionality Tests / aggregate-results (push) Has been skipped
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m34s
Documentation Validation / validate-docs (push) Failing after 10s
Documentation Validation / validate-policies-strict (push) Successful in 3s
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Integration Tests / test-service-integration (push) Successful in 2m42s
Multi-Chain Island Architecture Tests / test-multi-chain-island (push) Successful in 3s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 5s
P2P Network Verification / p2p-verification (push) Successful in 3s
Package Tests / Python package - aitbc-agent-sdk (push) Failing after 33s
Package Tests / Python package - aitbc-core (push) Successful in 17s
Package Tests / Python package - aitbc-crypto (push) Successful in 11s
Security Scanning / security-scan (push) Has been cancelled
Package Tests / Python package - aitbc-sdk (push) Successful in 13s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 9s
Package Tests / JavaScript package - aitbc-token (push) Successful in 17s
Staking Tests / test-staking-service (push) Failing after 6s
Staking Tests / test-staking-integration (push) Has been skipped
Staking Tests / test-staking-contract (push) Has been skipped
Staking Tests / run-staking-test-runner (push) Has been skipped
73 lines
2.2 KiB
Python
Executable File
73 lines
2.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Simple GPU Registry Server for demonstration
|
|
"""
|
|
|
|
from fastapi import FastAPI, HTTPException
|
|
from pydantic import BaseModel
|
|
from typing import Dict, Any, Optional
|
|
import uvicorn
|
|
from datetime import datetime, timezone
|
|
|
|
app = FastAPI(title="GPU Registry Demo")
|
|
|
|
# In-memory storage
|
|
registered_gpus: Dict[str, Dict] = {}
|
|
|
|
class GPURegistration(BaseModel):
|
|
capabilities: Dict[str, Any]
|
|
concurrency: int = 1
|
|
region: Optional[str] = None
|
|
|
|
class Heartbeat(BaseModel):
|
|
inflight: int = 0
|
|
status: str = "ONLINE"
|
|
metadata: Dict[str, Any] = {}
|
|
|
|
@app.get("/")
|
|
async def root():
|
|
return {"message": "GPU Registry Demo", "registered_gpus": len(registered_gpus)}
|
|
|
|
@app.get("/health")
|
|
async def health():
|
|
return {"status": "ok"}
|
|
|
|
@app.post("/miners/register")
|
|
async def register_gpu(miner_id: str, gpu_data: GPURegistration):
|
|
"""Register a GPU miner"""
|
|
registered_gpus[miner_id] = {
|
|
"id": miner_id,
|
|
"registered_at": datetime.now(timezone.utc).isoformat(),
|
|
"last_heartbeat": datetime.now(timezone.utc).isoformat(),
|
|
**gpu_data.dict()
|
|
}
|
|
return {"status": "ok", "message": f"GPU {miner_id} registered successfully"}
|
|
|
|
@app.post("/miners/heartbeat")
|
|
async def heartbeat(miner_id: str, heartbeat_data: Heartbeat):
|
|
"""Receive heartbeat from GPU miner"""
|
|
if miner_id not in registered_gpus:
|
|
raise HTTPException(status_code=404, detail="GPU not registered")
|
|
|
|
registered_gpus[miner_id]["last_heartbeat"] = datetime.now(timezone.utc).isoformat()
|
|
registered_gpus[miner_id]["status"] = heartbeat_data.status
|
|
registered_gpus[miner_id]["metadata"] = heartbeat_data.metadata
|
|
|
|
return {"status": "ok"}
|
|
|
|
@app.get("/miners/list")
|
|
async def list_gpus():
|
|
"""List all registered GPUs"""
|
|
return {"gpus": list(registered_gpus.values())}
|
|
|
|
@app.get("/miners/{miner_id}")
|
|
async def get_gpu(miner_id: str):
|
|
"""Get details of a specific GPU"""
|
|
if miner_id not in registered_gpus:
|
|
raise HTTPException(status_code=404, detail="GPU not registered")
|
|
return registered_gpus[miner_id]
|
|
|
|
if __name__ == "__main__":
|
|
print("Starting GPU Registry Demo on http://localhost:8091")
|
|
uvicorn.run(app, host="0.0.0.0", port=8091)
|