ORZ HOLDINGS
← Research Repository
Orzatty Labs · Hardware Systems

Dispersión

A native hardware abstraction and resource control framework for high-performance compute environments. Dispersión provides a Hardware Bridge IPC layer and the Orzatty Graphics Abstraction Layer (OGAL) for surgical, real-time resource management.

Version2.0.0
DivisionOrzatty Labs · Hardware Systems
ComponentsHardware Bridge, OGAL, GUI, Config
DateMarch 2026
Contactresearch@orzatty.org

Table of Contents

  1. Abstract & Motivation
  2. System Architecture
  3. Hardware Bridge IPC
  4. Surgical Command Set
  5. OGAL: Orzatty Graphics Abstraction Layer
  6. Monitoring GUI
  7. Configuration System
  8. OrzattyOS Integration
  9. Roadmap

1. Abstract & Motivation

Modern operating systems expose hardware resources through generic, one-size-fits-all APIs. A video editing workstation, a gaming machine, and a CI build server all receive the same scheduler priorities and memory management policies — despite having radically different performance requirements at any given moment.

Dispersión addresses this gap for the Orzatty compute environment. It provides a direct, low-overhead bridge between application-layer performance intelligence and hardware-level resource allocation controls. When a CENTINELA-monitored process triggers a performance threshold, or when OrzattyOS determines that the active workload has shifted, Dispersión translates that signal into a precise hardware intervention — adjusting CPU scheduler priorities, flushing memory, or reconfiguring the graphics pipeline — all without user intervention and with sub-100ms latency.

Design Philosophy: Surgical Precision Over Broad Policy Traditional performance optimizers apply blanket policies (e.g., "performance mode"). Dispersión applies targeted, time-bounded interventions to specific processes or resources, and learns from the outcomes to refine future interventions. Actions are logged with before/after resource metrics for full auditability.

2. System Architecture

Dispersión is organized as a set of cooperating subsystems, each with a clearly defined role. The Hardware Bridge is the only component that communicates directly with kernel interfaces. All other components send requests to the Bridge via IPC:

┌─────────────────────────────────────────────┐ │ Dispersión v2.0.0 │ │ │ │ ┌──────────────┐ ┌────────────────────┐ │ │ │ GUI Monitor │ │ Config Engine │ │ │ │ (Dashboard) │ │ (Shared module) │ │ │ └──────┬───────┘ └─────────┬──────────┘ │ │ │ │ │ │ ┌──────▼──────────────────────▼──────────┐ │ │ │ Application Profiler │ │ │ │ (Process detection & workload scoring) │ │ │ └──────────────────┬─────────────────────┘ │ │ │ IPC Commands │ │ ┌──────────────────▼─────────────────────┐ │ │ │ Hardware Bridge │ │ │ │ (Kernel interface — privileged) │ │ │ └──────────────────┬─────────────────────┘ │ │ │ │ │ ┌────────┬──────────┴──────┬─────────────┐ │ │ │ CPU │ Memory │ OGAL Layer │ │ │ │Sched. │ Manager │ (Graphics) │ │ │ └────────┴─────────────────┴─────────────┘ │ └─────────────────────────────────────────────┘
ComponentLocationPrivilegeResponsibility
Hardware BridgeDispersion Hardware Bridge/System (privileged)Kernel resource control, IPC listener
OGALOGAL/User (with DRM access)Graphics pipeline control, display resource allocation
GUI Monitorgui/UserReal-time dashboard, operator override panel
Shared Configshared/UserConfiguration loading, policy validation
Application Profilershared/utils/UserProcess categorization, workload detection

3. Hardware Bridge IPC

The Hardware Bridge is the privileged kernel-interfacing component of Dispersión. It runs as a system service and exposes a local IPC socket that application-layer components use to request hardware resource changes. All commands are validated and rate-limited by the Bridge before application to prevent runaway optimization loops.

IPC Protocol

Commands are sent as structured messages over a Unix domain socket. Each message includes a command identifier, target scope (system-wide, per-process, or per-device), and optional parameters. The Bridge responds with a JSON confirmation including the actual resource state before and after the intervention:

// IPC Command message format
{
    "command": "BOOST_LOW_LATENCY",
    "scope": "system",              // or "pid:1234" for per-process
    "priority": 8,                  // niceness delta (-20 to 19)
    "duration_ms": 5000,            // Auto-revert after N ms (0 = permanent)
    "requester": "dispersion-profiler"
}

// Bridge response
{
    "status": "applied",
    "command": "BOOST_LOW_LATENCY",
    "before": { "cpu_sched": "SCHED_OTHER", "nice": 0 },
    "after":  { "cpu_sched": "SCHED_FIFO",  "nice": -10 },
    "revert_at_ms": 1711058405000
}

Security Model

The Hardware Bridge only accepts commands from processes that present a valid capability token signed by Dispersión's internal key. This prevents rogue processes from abusing the IPC channel to hijack system resources. The token is issued by the Bridge to registered client processes at startup and rotated every 30 minutes.

4. Surgical Command Set

Dispersión defines a precise vocabulary of hardware intervention commands. Each command is named to be operationally descriptive, and all are designed to be time-bounded and self-reverting. The two primary commands in the current implementation are:

BOOST_LOW_LATENCY

Elevates the target process (or the system scheduler globally) to a real-time scheduling priority class. Sets CPU affinity to performance cores on hybrid architectures (Intel P-cores/E-cores). Disables CPU frequency scaling governorship for the duration. Automatically reverts after the configured duration window.

Use case: Active audio rendering, video encoding, game frames where consistent sub-frame timing is critical.

PURGE_AGGRESSIVE

Instructs the kernel to immediately reclaim cached memory pages (echo 3 > /proc/sys/vm/drop_caches), triggers transparent huge page compaction, and sends SIGTERM to any process identified as idle and exceeding the memory pressure threshold. All terminations are logged to the Dispersión audit trail.

Use case: Pre-emptive memory reclamation before launching a memory-intensive workload. Recovering system responsiveness after memory-heavy development sessions.

Command Extension

The command set is designed for extension. New commands are registered in the Bridge's command map and validated against a schema that enforces minimum duration bounds, scope restrictions, and privilege levels. Community-contributed commands can be added via the shared configuration module.

5. OGAL: Orzatty Graphics Abstraction Layer

The Orzatty Graphics Abstraction Layer (OGAL) is the graphics-specific hardware management component of Dispersión. While the Hardware Bridge handles CPU and memory resources, OGAL manages the graphics subsystem: GPU workload prioritization, VRAM allocation policies, display refresh rate adjustments, and rendering pipeline configuration.

Key Capabilities

Driver Interface

OGAL communicates with GPU hardware through the standard DRM (Direct Rendering Manager) kernel interface, making it compatible with all major open-source GPU drivers (AMDGPU, Intel i915, Nouveau) and the NVIDIA proprietary driver via its management API:

# OGAL capability detection (on OrzattyOS boot)
ogal detect-hardware

Output:
→ GPU 0: AMD Radeon RX 7900 XTX (amdgpu driver)
  VRAM: 24GB GDDR6 | VRR: Supported (48-144Hz) | Compute: ROCm 6.1
→ GPU 1: Intel UHD 770 (i915 driver)  
  VRAM: Shared (8GB dynamic) | VRR: Not Supported | Role: Display Output
→ OGAL routing: GPU 0 (compute/render) | GPU 1 (desktop compositor)

5.5. Dispersion AI (Confidential / Top Secret)

While the OGAL and Hardware Bridge components are documented, the third pillar of the project, Dispersion AI, remains highly classified. Currently operating within the strict confines of Orzatty Research Labs, Dispersion AI is a predictive neural layer designed to anticipate hardware bottlenecks before they occur.

By monitoring microsecond-level motherboard latencies, cache misses, and pipeline stalls, the AI engine proactively adjusts the Hardware Bridge's surgical interventions. All technical specifications regarding its parameters, architecture, and deployment timeline remain under embargo.

6. Monitoring GUI

Dispersión includes a real-time monitoring dashboard that provides operators with full visibility into current hardware resource states, active interventions, detected application workloads, and historical optimization outcomes.

Dashboard Panels

7. Configuration System

All Dispersión behavior is governed by a unified configuration file that is validated at startup and hot-reloadable at runtime:

[hardware_bridge]
monitoring_interval_ms = 2000    # Hardware state polling interval
command_revert_default_ms = 5000 # Default auto-revert window for time-bounded commands
max_concurrent_interventions = 3 # Maximum simultaneous hardware modifications

[ogal]
vrr_enabled = true
multi_gpu_routing = "auto"       # auto | discrete-only | integrated-only
vram_eviction_threshold = 0.85   # Trigger VRAM cleanup at 85% utilization

[profiler]
detection_interval_ms = 5000
workload_categories = ["gaming", "video", "development", "office", "idle"]
min_cpu_threshold = 0.05         # Ignore processes using less than 5% CPU

[gui]
update_interval_ms = 500
alert_temperature_celsius = 90
alert_memory_percent = 95

8. OrzattyOS Integration

On OrzattyOS, Dispersión is installed as two systemd services — one privileged (Hardware Bridge) and one user-level (OGAL + Profiler + GUI):

dispersion-bridge.service   # Runs as root. Manages IPC socket + kernel interfaces.
dispersion-user.service     # Runs as session user. Profiler + OGAL + GUI dashboard.

CENTINELA feeds performance anomaly events directly to the Dispersión Hardware Bridge and acts as a secondary trigger source: if CENTINELA's ResourceMetrics detect abnormal CPU or memory usage by a process, it can issue a PURGE_AGGRESSIVE command via the shared IPC interface — treating resource exhaustion as a potential security event (e.g., cryptominer, memory-flooding malware).

9. Roadmap

VersionTargetFeature
2.1Q2 2026Per-game profile system: automatic hardware preset switching based on executable name
2.2Q3 2026Thermal management: dynamic TDP limits based on workload type and cooling headroom
3.0Q4 2026OGAL v2: Full ROCm/CUDA compute workload routing for OrzattyCloud GPU instances
3.1Q1 2027Network Hardware Bridge: QoS and traffic shaping integration with CENTINELA network policies
© 2026 ORZ Holdings — Orzatty Labs Hardware Systems. Contact: research@orzatty.org