| { |
| "$schema": "https://json-schema.org/draft/2020-12/schema", |
| "$id": "https://huggingface.co/datasets/rtx-pro-4000/benchmarks/schema.json", |
| "title": "RTX PRO 4000 Blackwell benchmark row", |
| "type": "object", |
| "additionalProperties": false, |
| "required": [ |
| "variant", |
| "vram_gb", |
| "memory_type", |
| "bus_width_bit", |
| "bandwidth_gbps", |
| "tdp_w", |
| "pcie_lanes", |
| "gpu_count", |
| "model", |
| "params_b", |
| "quant", |
| "backend", |
| "backend_version", |
| "driver_version", |
| "os", |
| "context_len", |
| "concurrency", |
| "tok_s_prefill", |
| "tok_s_decode", |
| "vram_used_gb", |
| "power_w", |
| "thinking", |
| "source", |
| "submitter", |
| "date", |
| "notes" |
| ], |
| "properties": { |
| "variant": { "type": "string", "enum": ["desktop", "sff", "laptop"] }, |
| "vram_gb": { "type": "number", "exclusiveMinimum": 0 }, |
| "memory_type": { "type": "string", "enum": ["gddr7", "gddr6"] }, |
| "bus_width_bit": { "type": "integer", "minimum": 1 }, |
| "bandwidth_gbps": { "type": "number", "exclusiveMinimum": 0 }, |
| "tdp_w": { "type": "number", "exclusiveMinimum": 0 }, |
| "pcie_lanes": { "type": "integer", "minimum": 1 }, |
| "gpu_count": { "type": "integer", "minimum": 1 }, |
| "model": { "type": "string", "minLength": 1 }, |
| "params_b": { "type": "number", "exclusiveMinimum": 0 }, |
| "quant": { |
| "type": "string", |
| "enum": ["gguf-q4_k_m", "gguf-q8_0", "nvfp4", "fp8", "bf16", "other"] |
| }, |
| "backend": { |
| "type": "string", |
| "enum": ["llama.cpp", "vllm", "tensorrt-llm", "other"] |
| }, |
| "backend_version": { "type": "string", "minLength": 1 }, |
| "driver_version": { "type": "string", "minLength": 1 }, |
| "os": { "type": "string", "minLength": 1 }, |
| "context_len": { "type": "integer", "minimum": 1 }, |
| "concurrency": { "type": "integer", "minimum": 1 }, |
| "tok_s_prefill": { "type": "number", "minimum": 0 }, |
| "tok_s_decode": { "type": "number", "minimum": 0 }, |
| "vram_used_gb": { "type": "number", "minimum": 0 }, |
| "power_w": { "type": "number", "minimum": 0 }, |
| "thinking": { "type": "string", "enum": ["on", "off", "n/a"] }, |
| "source": { "type": "string", "enum": ["owner-measured"] }, |
| "submitter": { "type": "string", "minLength": 1 }, |
| "date": { "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}$" }, |
| "notes": { "type": "string", "minLength": 1 } |
| } |
| } |
|
|