|
1 | | -# Dev-contitional Platform |
| 1 | +# Dev-conditional: Heterogeneous Industrial AI Platform |
2 | 2 |
|
3 | | -This repository is presented as 2 connected but independently positioned projects: |
4 | | - |
5 | | -- **60%: Krystal Vino + GAMESA 3D Grid** (primary platform) |
6 | | -- **40%: FANUC RISE** (secondary industrial branch, FOCAS integration) |
| 3 | +This repository hosts a next-generation heterogeneous industrial AI platform, bridging the gap between high-level reasoning and real-time industrial control. It represents a fundamental rethink of how we architect compute at the edge, moving away from monolithic designs to a segmented, best-tool-for-the-job architecture. |
7 | 4 |
|
8 | 5 | --- |
9 | 6 |
|
10 | | -## 1) Krystal Vino + GAMESA 3D Grid (Primary Platform, 60%) |
| 7 | +## 1) Gamesa Cortex V2 (Primary Platform, 60%) |
| 8 | +**The Neural Control Plane** |
11 | 9 |
|
12 | | -### What Krystal Vino Is |
13 | | -Krystal Vino is a performance orchestration layer on top of OpenVINO/oneAPI for personal computers. |
14 | | -Its goal is to reduce latency and increase throughput through adaptive planning, telemetry, and runtime policy control. |
| 10 | +Gamesa Cortex V2 is a heterogeneous AI stack designed to run on commodity PC hardware while delivering safety-critical performance for industrial automation. It serves as an operating system for decision-making, orchestrating low-level acceleration through high-level logic. |
15 | 11 |
|
16 | | -Codebase: `openvino_oneapi_system/` |
| 12 | +### Core Architecture |
| 13 | +- **Rust for Safety-Critical Planning** 🦀: Replaces Python in the critical path. Planning algorithms (A*, RRT) are compiled into shared libraries for zero-cost abstractions and memory safety. |
| 14 | +- **Vulkan for Spatial Awareness** 🌋: Leverages Compute Shaders (Intel Iris Xe, NVIDIA RTX) for massive parallel voxel collision detection, treating the workspace as a live volumetric grid. |
| 15 | +- **Economic Governance** ⚖️: A bio-inspired "Economic Governor" manages computation budgets. High-value tasks (Safety) get priority, while low-value tasks wait for "fiscal replenishment," preventing thermal throttling. |
| 16 | +- **Docker & vGPU Framework** 🐳: A custom **vGPU Manager** creates "Virtual Slices" of the host GPU for containerized AI workloads, enabling deployment on any Linux distro. |
17 | 17 |
|
18 | | -### Core Components |
19 | | -- **OpenVINO runtime layer**: inference with a safe fallback mode. |
20 | | -- **oneAPI/OpenMP tuning**: dynamic control of `ONEAPI_NUM_THREADS`, `OMP_NUM_THREADS`, `OPENVINO_NUM_STREAMS`, `KMP_*`. |
21 | | -- **Economic planner + evolutionary tuner**: online switching between `defensive/balanced/aggressive` modes. |
22 | | -- **GAMESA 3D Grid**: logical 3D memory layer for data organization/swap behavior. |
23 | | -- **Delegated logging**: separate channels for `system`, `telemetry`, `planning`, `policy`, `inference`, `grid_update`. |
| 18 | +**Codebase**: `gamesa_cortex_v2/` |
24 | 19 |
|
25 | | -### Proven Results (Linux Benchmark) |
26 | | -Source: `openvino_oneapi_system/logs/benchmark_latest.txt` |
| 20 | +--- |
27 | 21 |
|
28 | | -- **Latency improvement**: `66.01%` |
29 | | -- **Throughput improvement**: `234.59%` |
30 | | -- **Utility improvement**: `270.42%` |
31 | | -- **Sysbench improvement**: `99.55%` |
32 | | - Baseline: `2615.43 events/s` -> Adaptive: `5219.10 events/s` |
| 22 | +## 2) FANUC RISE v3.0 - Cognitive Forge (Secondary Branch, 40%) |
| 23 | +**Advanced CNC Copilot** |
33 | 24 |
|
34 | | -### Quick Run |
35 | | -```bash |
36 | | -python3 openvino_oneapi_system/main.py --cycles 10 --interval 0.5 |
37 | | -python3 openvino_oneapi_system/benchmark_linux.py --cycles 60 |
38 | | -``` |
| 25 | +FANUC RISE v3.0 represents the evolution from deterministic execution to probabilistic creation. It is a **Conceptual Prototype & Pattern Library** demonstrating architectural patterns for bio-mimetic industrial automation. |
39 | 26 |
|
40 | | -### Debian Package (Whole Package) |
41 | | -Generated package: |
42 | | -- `openvino_oneapi_system/dist/openvino-oneapi-system_1.1.0_amd64.deb` |
| 27 | +### Key Concepts |
| 28 | +- **Cognitive Forge**: Shifts focus from "Doing What Is Told" to "Suggesting What Is Possible," where AI proposes optimization strategies for operator selection. |
| 29 | +- **Shadow Council Governance**: A multi-agent system (Creator, Auditor, Accountant) ensuring safe AI integration by validating probabilistic proposals against deterministic physics. |
| 30 | +- **The Probability Canvas**: A "Glass Brain" interface visualizing potential futures and decision trees instead of just current status. |
| 31 | +- **Neuro-Geometric Architecture**: Integer-only neural networks for edge computing. |
43 | 32 |
|
44 | | -Includes: |
45 | | -- CLI: `ovo-runtime`, `ovo-benchmark` |
46 | | -- Service unit: `openvino-oneapi-system.service` |
47 | | -- Config: `/etc/default/openvino-oneapi-system` |
| 33 | +**Codebase**: `advanced_cnc_copilot/` |
48 | 34 |
|
49 | 35 | --- |
50 | 36 |
|
51 | | -## 2) FANUC RISE (Secondary Branch, 40%) |
52 | | - |
53 | | -### Project Characterization |
54 | | -FANUC RISE is an industrial CNC layer focused on operations, telemetry, and workflow automation. |
55 | | -FOCAS is a **secondary integration layer**, not the primary product target. |
56 | | - |
57 | | -Codebase: `advanced_cnc_copilot/` |
58 | | - |
59 | | -### Scope |
60 | | -- CNC operator workflows and supervision |
61 | | -- API + UI for production monitoring |
62 | | -- FANUC telemetry bridge (mock/real mode based on environment) |
63 | | -- Extensible backend services for manufacturing analytics |
| 37 | +## Repository Map |
64 | 38 |
|
65 | | -### Role in the Overall Ecosystem |
66 | | -- Krystal Vino handles performance runtime orchestration and compute optimization. |
67 | | -- FANUC RISE handles industrial context, machine/data connectivity, and operator use. |
68 | | -- Together they form a pipeline: **performance core + industrial execution**. |
| 39 | +- **`gamesa_cortex_v2/`**: **Core Platform**. The active development branch for the heterogeneous AI stack (Rust/Vulkan/Python). |
| 40 | +- **`advanced_cnc_copilot/`**: **Industrial Application Layer**. The FANUC RISE v3.0 Cognitive Forge prototype and pattern library. |
| 41 | +- **`openvino_oneapi_system/`**: **Legacy/Foundation**. Previous generation performance orchestration layer (Krystal Vino). Served as the foundation for Cortex V2's optimization strategies. |
| 42 | +- **`docs/`**: Additional technical materials and documentation. |
69 | 43 |
|
70 | 44 | --- |
71 | 45 |
|
72 | | -## Repository Map |
73 | | -- `openvino_oneapi_system/` primary performance platform (OpenVINO, oneAPI, GAMESA 3D Grid) |
74 | | -- `advanced_cnc_copilot/` FANUC RISE industrial stack |
75 | | -- `docs/` additional technical materials |
76 | | - |
77 | 46 | ## Direction Note |
78 | | -The priority of this repository is Krystal Vino/GAMESA 3D Grid as the main platform for PC hardware and inference performance. |
79 | | -FANUC RISE remains a separate, secondary domain branch for CNC integrations. |
| 47 | + |
| 48 | +The priority of this repository is **Gamesa Cortex V2** as the main platform for PC hardware and inference performance. **FANUC RISE v3.0** serves as the advanced application layer and pattern library for industrial logic. |
80 | 49 |
|
81 | 50 | --- |
82 | 51 |
|
83 | 52 | ## Author & License |
84 | | -**Author**: Dušan Kopecký |
85 | | -**Email**: dusan.kopecky0101@gmail.com |
| 53 | + |
| 54 | +**Author**: Dušan Kopecký |
| 55 | +**Email**: dusan.kopecky0101@gmail.com |
86 | 56 | **License**: Apache 2.0 (See `LICENSE` file) |
0 commit comments