Rockwell Automation’s FactoryTalk Design Studio Copilot now runs Nemotron-Nano-9B-v2, a 9-billion-parameter open-source model from NVIDIA, directly on HMI panels and air-gapped edge appliances on factory floors. Siemens expects its Electronics Factory in Erlangen, Germany to become the first fully AI-driven adaptive manufacturing site in 2026, built on a joint platform with NVIDIA that delivered a 20% throughput increase and 10-15% capital expenditure reduction in PepsiCo pilot trials. These deployments share one constraint: every inference must run on hardware that consumes 20-35 watts, and fits in a DIN-rail enclosure. Small language models, or SLMs, are the models that fit that constraint.
This guide covers which SLMs fit which factory edge platforms, how Q4_K_M quantization changes the VRAM math, and what latency targets each use case requires.
What Qualifies as a Small Language Model for Factory Edge?
BentoML’s 2026 survey defines SLMs as models ranging from a few hundred million to roughly 10 billion parameters, a definition shaped by deployability. The ceiling is practical: a 10B-parameter model at 4-bit quantization requires approximately 5-6 GB of VRAM, which fits on most current edge platforms. Above that threshold, memory bandwidth becomes the bottleneck before compute does.
The models most commonly deployed at the factory edge in 2026 cluster in two tiers: the sub-4B tier, which runs on low-power NPUs and embedded GPU modules, and the 7B-9B tier, which requires dedicated GPU compute blocks with at least 8 GB of unified or dedicated memory.
How Does Q4_K_M Quantization Reduce VRAM Requirements?
Q4_K_M quantization reduces VRAM consumption by 72% compared to F16 precision, allowing a 7B-parameter model to fit in approximately 3.9 GB instead of 14 GB. Most factory edge SLM deployments use Q4_K_M via the GGUF format. The mechanism is mixed-precision: attention layers retain higher precision while feed-forward layers receive more aggressive compression, achieving approximately 0.56 bytes per parameter versus 2.0 bytes at F16.
Q4_K_M is well-suited for chat, summarization, and general-purpose assistance on the plant floor. It shows more quality degradation on coding and complex reasoning tasks, where Q8_0 (approximately lossless) is preferred when memory permits.
Google’s Gemma 3 family uses a different approach: Quantization Aware Training (QAT), where quantization is simulated during training before deployment. The result is a 4x reduction across all model sizes with significantly lower perplexity degradation. Google reports a 54% reduction in perplexity drop (measured via llama.cpp) when quantizing to Q4_0 compared to standard post-training quantization.
Which Edge Hardware Platforms Run SLMs in Factories?
The NVIDIA Jetson Orin NX 16GB, Intel Core Ultra 7 155H, and AMD Ryzen AI Embedded X100 define the three hardware tiers for factory edge SLM inference in 2026.
Table 1: Factory Edge Hardware Comparison
| Platform | AI Performance | Key AI Cores | Memory | TDP | Availability |
| NVIDIA Jetson Orin NX 16GB | 157 TOPS | 1,024 CUDA cores, 32 Tensor Cores | 16 GB LPDDR5, 102 GB/s | 20-35W | Production |
| Intel Core Ultra 7 155H | 33 TOPS (platform) | NPU: 11 TOPS, GPU: 18 TOPS | Up to 96 GB DDR5/LPDDR5 | 28W base | Production |
| AMD Ryzen AI Embedded X100 | Up to 50 TOPS (NPU) | XDNA 2 NPU, up to 16 Zen 5 cores | Unified (CPU+GPU+NPU) | 55W (45-120W configurable) | Sampling Jun 2026; production Q4 2026 |
NVIDIA Jetson Orin NX 16GB delivers 157 TOPS with 1,024 CUDA cores and 32 Tensor Cores from the Ampere GPU architecture. The 102 GB/s memory bandwidth on the 16 GB LPDDR5 pool is the critical number for LLM inference: bandwidth, not raw TOPS, governs token generation throughput. The JetPack SDK includes CUDA, cuDNN, and TensorRT, with ONNX Runtime available as a compatible framework. The standard module operates from -25°C to 80°C with a rated 5-year operational lifespan at 24/7 operation.
One clarification on published TOPS figures: an older NVIDIA developer blog page references “up to 100 TOPS” for the Orin NX, but this figure is superseded by the current module specifications page and the DS-10712-001_v1.7 datasheet, which confirm 157 TOPS for the 16GB variant.
Intel Core Ultra 7 155H presents a heterogeneous compute profile. The platform total of 33 TOPS (Int8) combines an NPU at 11 TOPS, Intel Arc GPU at 18 TOPS, and CPU contribution. The NPU, branded Intel AI Boost, is optimized for sustained, always-on inference at lower power, making it appropriate for continuous anomaly detection from vibration or pressure sensors. Burst workloads involving multiple camera streams or high-resolution vision tasks benefit more from the GPU. Supported frameworks include OpenVINO, ONNX Runtime, and DirectML. Base TDP is 28W with a maximum turbo power of 115W.
AMD Ryzen AI Embedded X100 is the most powerful entry in this tier but is not yet in production. Customer sampling began in June 2026, with mass production targeted for Q4 2026. The XDNA 2 NPU reaches up to 50 TOPS, and AMD claims 3.5x higher token generation throughput and 1.4x faster time-to-first-token versus Intel Core Ultra Series 3. The platform supports 24/7 operation for up to 10 years in harsh environments with an operating range of -40°C to 105°C. Purchase decisions requiring hardware before Q4 2026 should be based on Jetson Orin NX or Core Ultra platforms.
How Much VRAM Does Each SLM Require?
At Q4_K_M quantization, sub-4B models require 0.5 to 3.2 GB and 7B-9B models require 4 to 6 GB, fitting within the 16 GB Jetson Orin NX memory ceiling.
Table 2: SLM VRAM Requirements at Factory-Relevant Quantization
| Model | Parameters | Quantization | VRAM Required | Context Window | MMLU | Notes |
| Gemma 3 1B | 1B | QAT int4 | 0.5 GB | 128K | – | Lowest footprint; fits smallest edge nodes |
| Gemma 3 4B | 4B | QAT int4 | 2.6 GB | 128K | 59.6 | Multimodal (vision+text); 4x reduction from 8 GB BF16 |
| Llama 3.2 3B | 3B | INT4 | ~3.2 GB | 128K (8K quantized) | 63.4 | Distilled from Llama 3.1 8B/70B |
| Qwen2.5-3B | 3.09B | INT4 | ~3.2 GB | 32K | 65.6 | Strong math and coding at this tier |
| Phi-4-mini | 3.8B | INT4 | ~2.1 GB est. | 128K | 67.3 | MIT license; best MMLU in sub-4B tier |
| Mistral 7B | 7.3B | Q4_K_M | ~4 GB | 8,192 tokens | – | Apache 2.0; SWA reduces KV cache 50% at 8K |
| Nemotron-Nano-9B-v2 | 9B | varies | ~5-6 GB est. | – | – | Used by Rockwell FactoryTalk Copilot |
A note on Mistral 7B context: the model supports a context window of 8,192 tokens total, with Sliding Window Attention attending to the previous 4,096 hidden states per layer. At 8,192 tokens, the rolling buffer cache saves 50% of KV cache memory compared to full attention, which is a meaningful advantage for continuous process monitoring workloads.
Phi-4-mini leads in the sub-4B tier for two reasons: an MMLU score of 67.3 (higher than both Llama 3.2 3B at 63.4 and Qwen2.5-3B at 65.6) and an MIT license with no commercial restrictions. Microsoft trained it on 5 trillion tokens using 512 A100-80G GPUs, and the model card describes its intended use cases as “general-purpose AI systems and applications that require strong reasoning in memory or compute-constrained environments, or those with latency-bound requirements.” That description maps directly onto factory edge inference requirements.
For the Jetson Orin NX 16GB, a practical configuration is to run a primary 7B-9B reasoning model (Mistral 7B or Nemotron-Nano-9B-v2) alongside a 3B-4B visual inspection model (Gemma 3 4B multimodal), with total VRAM consumption below 10 GB and headroom for OS, frameworks, and KV cache.
What Latency Does Each Factory AI Use Case Require?
Safety interlocks require sub-10ms deterministic response from dedicated controllers, while operator assistance and maintenance tasks tolerate 1 to 30 seconds and run on 7B-9B SLMs.
Table 3: Factory Use Case Latency and SLM Fit
| Use Case | Max Acceptable Latency | Model Tier | Key Requirement |
| Safety interlock / E-stop | <10 ms | Rule-based or dedicated model | Deterministic; SLMs secondary |
| Visual defect inspection | 50-200 ms per frame | 1B-4B vision model | Throughput over latency |
| Anomaly detection (sensor) | 100-500 ms | 1B-3B; NPU-resident | Always-on, low power |
| Operator troubleshooting assistant | 1-3 seconds | 7B-9B | Reasoning quality critical |
| Maintenance work order generation | 5-30 seconds | 7B-9B | Accuracy over speed |
| Process parameter optimization | 10-60 seconds | 7B-9B + RAG | Context window matters |
iFactory’s published methodology (noting the company has not released independently verified case studies) estimates sub-10ms inference latency for 1B-7B SLMs on dedicated edge hardware, compared to 200ms-2 seconds for cloud API calls. The operational cost model also differs: edge SLMs incur zero marginal cost per inference versus $0.01-0.06 per 1,000 tokens for cloud API calls. At high inference volumes typical in continuous visual inspection, this gap is significant.
For safety-critical interlocks, SLMs are not the control layer. They operate as advisory and diagnostic systems, feeding structured outputs to deterministic PLCs and safety controllers. Rockwell’s deployment specifically describes the model as serving “design, development, production and maintenance workflows” and does not execute real-time control loops.
Which Companies Deploy SLMs on Factory Edge Hardware?
Rockwell Automation deploys Nemotron-Nano-9B-v2 on air-gapped HMI panels and edge appliances, while Siemens targets a fully AI-driven electronics factory in Erlangen for 2026.
Rockwell Automation: FactoryTalk Design Studio Copilot
Rockwell Automation’s deployment at Automation Fair 2025 (November 17-20, Chicago) demonstrated Nemotron-Nano-9B-v2 running inside FactoryTalk Design Studio. The model, built with NVIDIA’s NeMo framework, operates across “HMI panels, appliances, desktop IDEs and server or private cloud environments” and specifically supports edge and air-gapped deployments where internet connectivity is unavailable or prohibited by security policy.
Rockwell describes the model as providing “improved reasoning, predictability and responsiveness compared to other SLMs” with coverage across design, development, production, and maintenance workflows. The deployment targets “environments with limited space and power,” which maps directly to the 20-35W Jetson-class hardware tier. The company also develops FactoryTalk Analytics GuardianAI, a separate edge AI product that trains and runs predictive fault detection for PowerFlex VFDs directly at the edge, identifying 23 fault types across pumps, fans, blowers, and motors without requiring additional sensors.
Siemens: Industrial AI Suite and Erlangen Blueprint
Siemens announced at CES 2026 its joint platform with NVIDIA for AI-driven adaptive manufacturing. The first implementation is the Siemens Electronics Factory in Erlangen, Germany, expected to launch as a fully AI-driven site in 2026. PepsiCo, an early adopter of elements of the platform, reported identifying up to 90% of potential issues before physical changes were made, a 20% throughput increase at first implementation, and 10-15% capital expenditure reduction.
Siemens’ Industrial AI Suite, announced at Hannover Messe 2026, simplifies the AI lifecycle from development to edge deployment. Key components include the AI Asset Manager for fleet-wide model distribution and version control, the AI Inference Server for local vision and time-series inference at the device level, and the Siemens AI SDK for packaging existing models into offline-executable artifacts. The suite targets IEC 62443-4-2 certification for H2 2026 and operates on hardware ranging from SIMATIC IOT2050 ARM-based devices to OpenShift and Hyper-V environments. Connectivity spans PROFINET, S7, OPC UA, EtherNet/IP, and Modbus TCP.
AI tools were used to assist with research and data compilation for this article. Edited and verified by the IIoT World editorial team.
Related from IIoT World
- Small Language Models: The Factory AI Infrastructure for the Modern Plant Floor
- Where to Put Intelligence: Edge AI for Factory Maintenance
- AI Predictive Maintenance in 2026: What Manufacturing Leaders Need to Know
- What Edge AI Needs from Industrial Data
FAQ
1. Which SLM runs best on the NVIDIA Jetson Orin NX 16GB for factory use?
The answer depends on the use case. For operator assistance and maintenance reasoning, Mistral 7B at Q4_K_M (~4 GB VRAM) or Nemotron-Nano-9B-v2 (~5-6 GB estimated) provides the strongest reasoning at this tier. For visual inspection tasks requiring multimodal input, Gemma 3 4B at QAT int4 (2.6 GB) frees bandwidth for camera-intensive workloads. For always-on, low-latency anomaly detection, the sub-2B models perform best according to benchmark tests on the Jetson Orin Nano hardware, where 7B-class models were rated “pretty slow” for interactive real-time applications.
2. Is the AMD Ryzen AI Embedded X100 ready to deploy in a factory now?
No. As of August 2026, AMD Ryzen AI Embedded X100 is in customer sampling. Mass production is targeted for Q4 2026. Specifications including up to 50 TOPS NPU performance and 16 Zen 5 cores are verified from AMD’s official announcements, but production-grade hardware is not yet available. Facilities planning deployments in 2026 should design around Jetson Orin NX or Intel Core Ultra platforms and evaluate X100 when production units ship.
3. What is the difference between Q4_K_M quantization and QAT int4?
Q4_K_M is a post-training quantization method applied to existing model weights using the GGUF format. It uses mixed precision, keeping attention layers at higher precision while compressing feed-forward layers more aggressively, achieving approximately 0.56 bytes per parameter and a 72% VRAM reduction versus F16. QAT (Quantization Aware Training), used by Google for the Gemma 3 family, simulates quantization during the training process itself. The result is a 4x VRAM reduction with significantly less quality degradation: Google reports a 54% lower perplexity drop at Q4_0 compared to standard post-training quantization. For factory deployments where model accuracy matters (maintenance diagnosis, process optimization), QAT-trained models are preferable when available.
4. Can SLMs replace cloud AI for all factory AI use cases?
No. SLMs on factory edge hardware are well-suited for continuous inference tasks: operator assistance, real-time anomaly detection, visual inspection, and routine work order generation. They are not suited for tasks requiring very large context windows (beyond 8-128K tokens depending on the model), cross-facility learning from aggregated fleet data, or initial model training. The architecturally sound approach, reflected in both the Siemens AI Suite and Rockwell FactoryTalk platform, combines edge inference for latency-sensitive and data-sensitive tasks with cloud infrastructure for model training and fleet-wide model distribution.
5. What security considerations apply to SLM edge deployments in industrial environments?
Air-gapped deployment is a primary consideration. Both Rockwell Automation and Siemens explicitly support air-gapped operation, meaning the model runs with no external network connection after initial deployment. Siemens’ Industrial AI Suite is targeting IEC 62443-4-2 certification for H2 2026, which covers cybersecurity requirements for industrial automation and control system components. For data privacy, running inference locally on a Jetson Orin NX or Intel Core Ultra platform means production data, operator queries, and sensor readings never leave the facility network. This is particularly relevant in regulated industries and defense-adjacent manufacturing where data sovereignty requirements prohibit sending operational data to cloud API endpoints.
Sources
- Microsoft / Hugging Face: Phi-4-mini-instruct Model Card
- Google Developers Blog: Gemma 3 QAT Models
- Meta AI: Llama 3.2 Launch
- Meta AI: Quantized Llama Models
- Will It Run AI: Mistral GPU Requirements
- Will It Run AI: Q4_K_M Quantization Guide
- NVIDIA: Jetson Modules Official Specifications
- NVIDIA Developer Blog: Jetson Orin NX 16GB
- Intel: Core Ultra 7 155H Official Specifications
- AMD Newsroom: Ryzen AI Embedded X100
- CNX Software: AMD Ryzen AI Embedded P100 and X100
- Rockwell Automation via PR Newswire: Nemotron-Nano-9B-v2
- Rockwell Automation: FactoryTalk Analytics GuardianAI
- Siemens Press: Industrial Edge Ecosystem at Hannover Messe 2026
- Interesting Engineering: Siemens and NVIDIA Industrial AI OS at CES 2026
- Siemens Architecture Hub: AI Suite on Industrial Edge
- BentoML: Best Open-Source Small Language Models 2026
- iFactory: SLMs on Factory Edge