File size: 2,377 Bytes
ecf89a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
  "$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 }
  }
}