{"id":2076,"date":"2026-09-20T17:11:54","date_gmt":"2026-09-20T08:11:54","guid":{"rendered":"https:\/\/localmodelwatch.tsuchitsuchi.com\/2026\/09\/20\/inco-ai-releases-splash-engine-for-mac\/"},"modified":"2026-09-20T17:11:54","modified_gmt":"2026-09-20T08:11:54","slug":"inco-ai-releases-splash-engine-for-mac","status":"publish","type":"post","link":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/2026\/09\/20\/inco-ai-releases-splash-engine-for-mac\/","title":{"rendered":"Inco AI Releases Splash Engine for Fast Local LLMs on Mac"},"content":{"rendered":"<p><!-- lmw:facts --><\/p>\n<h2>At a Glance<\/h2>\n<div class=\"lmw-table-scroll\" tabindex=\"0\" style=\"overflow-x:auto;-webkit-overflow-scrolling:touch;max-width:100%;\">\n<table style=\"width:max-content;min-width:100%;border-collapse:collapse;\">\n<thead>\n<tr>\n<th>Item<\/th>\n<th>Value<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Publisher<\/td>\n<td>LM Studio<\/td>\n<\/tr>\n<tr>\n<td>Published<\/td>\n<td>2026-09-18<\/td>\n<\/tr>\n<tr>\n<td>Source type<\/td>\n<td>Primary source (the publisher itself)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><em>Values determined by this site&#8217;s code at collection time. Dates are JST.<\/em><\/p>\n<p><!-- \/lmw:facts --><\/p>\n<h2>Overview<\/h2>\n<p>On September 18, 2026, Inco AI released &#8220;Splash Engine,&#8221; an open-source local LLM inference engine tailored specifically for Apple Silicon Mac environments. Alongside this, the company announced a collaboration with LM Studio, natively integrating Splash Engine into the desktop application &#8220;LM Studio Bionic&#8221; released on the same day. Unlike general-purpose inference engines, Splash Engine adopts a design that builds kernels and memory plans dedicated to specific models, reportedly achieving high processing speeds on supported models.<\/p>\n<h2>Announcement Details<\/h2>\n<p>Splash Engine, released under the Apache-2.0 license, is an open-source inference engine available on GitHub (<code>github.com\/incoai\/splash<\/code>). While general inference engines aim for broad compatibility across diverse models, Splash Engine takes an approach of optimizing the entire engine on a per-model basis. At present, it supports two models: &#8220;Qwen3.6-35B-A3B&#8221; and &#8220;Qwen3.8-27B,&#8221; featuring model-specific implementations of fused shape-specialized kernels, dedicated trained draft models, and optimized memory plans.<\/p>\n<p>For inference processing, it incorporates speculative decoding as a standard feature. Each supported model comes bundled with a dedicated draft model named &#8220;DFlash 2.&#8221; Draft models in the DFlash series also operate in SGLang, vLLM, TensorRT-LLM, and llama.cpp, boasting a track record of over 6 million total downloads. In Splash Engine, token proposal, verification, acceptance, and state updates by the draft model are executed as a single processing unit, reducing per-step overhead. Additionally, it features 4-bit matrix multiplication and attention kernels pre-compiled by internal kernel agents, eliminating the need for manual compilation or tuning by the user.<\/p>\n<p>Memory management involves pre-budgeting according to the hardware configuration. For instance, when running Qwen3.8-27B, 15 GiB is allocated to model weights and 1.2 GiB to the draft model, after which the KV cache area is calculated.<\/p>\n<p>As performance validation, measurement results using &#8220;NVIDIA SPEED-Bench&#8221; on an M5 Pro Mac environment equipped with 48 GB of unified memory were published. For single-request processing of Qwen3.8-27B, the decode speed recorded 74 tokens\/s for short prompts and 54 tokens\/s for a 32K context, which is reportedly nearly twice the speed of the runner-up &#8220;oMLX&#8221; among comparison targets. Qwen3.6-35B-A3B achieved 210 tokens\/s for short prompts and 143 tokens\/s at 32K. Furthermore, the Time to First Token (TTFT) when reusing the cache at a 32K context was 123 ms for Qwen3.6-35B-A3B and 282 ms for Qwen3.8-27B, representing a 6.6x to 7.3x speedup compared to oMLX. In addition, validation of parallel requests (short prompts) by four sub-agents reached a total throughput of 170 tokens\/s for Qwen3.8-27B and 357 tokens\/s for Qwen3.6-35B-A3B, showing up to a 3.9x speed improvement over the runner-up engine.<\/p>\n<p>The hardware requirements call for a Mac equipped with an M3 or newer processor, running macOS 26.4 or later, with 36 GB or more of unified memory (Inco AI recommends 48 GB or more). For installation, users can install it via Homebrew using <code>brew install incoai\/tap\/splash<\/code> and launch it with the command <code>splash serve --model incoai\/Qwen3.8-27B-Splash<\/code>, alongside CLI integration commands for tools such as OpenCode, Claude Code, Codex, and Hermes.<\/p>\n<p>Additionally, through collaboration with LM Studio, integrated use is available in &#8220;LM Studio Bionic&#8221; (version 1.1.5 or later). By installing Splash (Metal) from Experimental backends under Settings &gt; Runtime in LM Studio Bionic and downloading the supported models from the Hugging Face repository (<code>incoai\/Qwen3.8-27B-Splash<\/code> or <code>incoai\/Qwen3.6-35B-A3B-Splash<\/code>), users can execute local inference directly from the UI.<\/p>\n<h2>Background<\/h2>\n<p>Inco AI has previously developed inference platforms based on data center GPUs. On the benchmark evaluation platform &#8220;Artificial Analysis,&#8221; the company is described as having the record of being the fastest provider across five open models: &#8220;Kimi K3,&#8221; &#8220;MiniMax M3,&#8221; &#8220;GLM 5.3,&#8221; &#8220;GLM 5.3 Flash,&#8221; and &#8220;DeepSeek V4.1 Flash.&#8221; Moreover, its proprietary speculative decoding draft model series &#8220;DFlash&#8221; supports major inference frameworks such as SGLang, vLLM, TensorRT-LLM, and llama.cpp, accumulating expertise in model acceleration with over 6 million total downloads.<\/p>\n<p>In recent years, with the growing demand for local coding assistance and agent operations, high-load processing tasks\u2014such as initial repository loading (prefill), conversation continuation with accumulated history (decode), prefix caching for the same context, and parallel execution by multiple sub-agents\u2014have become routine. However, many conventional local inference engines are designed with a primary focus on the flexibility to execute diverse model structures generally, creating overhead in optimizing for specific model shapes and integrating speculative decoding. Inco AI aims to resolve performance bottlenecks in local agent tasks by applying the philosophy cultivated in data center infrastructure\u2014specializing the entire engine design to match the model\u2014to Apple Silicon Macs.<\/p>\n<h2>Impact on Local LLM Users<\/h2>\n<p>For developers operating open-weight models in local environments, the emergence of Splash Engine provides a high-speed execution option on Apple Silicon environments.<\/p>\n<h3>Usage Forms and Accessibility<\/h3>\n<p>Splash Engine is open-sourced under the Apache-2.0 license and can be installed directly as a CLI tool from GitHub via Homebrew. In addition, because it was natively integrated on day one into LM Studio Bionic (1.1.5 or later), a representative local LLM desktop application, it can be deployed and executed from the GUI without complex environment setup. As API interfaces, it supports OpenAI Chat Completions, Responses, and Anthropic Messages formats, and supports streaming output, tool calling, JSON Schema output, and image input. It is designed to connect seamlessly with existing coding agent tools such as OpenCode, Claude Code, Codex, and Hermes.<\/p>\n<h3>Hardware Requirements and Constraints<\/h3>\n<p>While delivering high performance, the requirements placed on hardware are set relatively high. Supported requirements are specified as a Mac with an M3 or newer processor, macOS 26.4 or later, and at least 36 GB or more of unified memory, with Inco AI recommending 48 GB or more of memory for a practical environment. When running Qwen3.8-27B, in addition to the model weights themselves (15 GiB) and the draft model (1.2 GiB), the KV cache area is reserved, meaning a large amount of unified memory is a prerequisite to process long contexts while running editors and browsers concurrently. It should be noted that older generation M1\/M2 chips and environments with less than 36 GB of memory are out of scope for support.<\/p>\n<h3>Supported Models and Future Scalability<\/h3>\n<p>The &#8220;model-specialized&#8221; design that is Splash Engine&#8217;s core feature comes with the trade-off that choices of supported models are limited. Currently, only two models are provided: &#8220;Qwen3.6-35B-A3B&#8221; and &#8220;Qwen3.8-27B,&#8221; and it does not function as a general-purpose runtime that can freely load and execute arbitrary models in general GGUF or MLX formats. Inco AI has expressed its policy to continuously add supported models going forward, stating that it accepts requests for user-customized fine-tuned models and inquiries from agent developers. However, the materials do not mention specific additional model names or timelines outside of the Qwen series.<\/p>\n<p><!-- lmw:related --><\/p>\n<h2>Related Articles<\/h2>\n<ul>\n<li><a href=\"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/2026\/09\/18\/lm-studio-bionic-introspection-session-references\/\">LM Studio Announces Session References and Introspection in Bionic<\/a><\/li>\n<\/ul>\n<p><!-- \/lmw:related --><\/p>\n<h2>Sources<\/h2>\n<ul>\n<li><a href=\"https:\/\/lmstudio.ai\/blog\/splash-engine\">Splash Engine &#8211; the fastest local Qwen3.8 on Apple Silicon (LM Studio)<\/a><\/li>\n<li><a href=\"https:\/\/inco.ai\/blog\/splash\">Splash (Inco AI)<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Inco AI releases Splash Engine, an open-source local LLM inference engine optimized for Apple Silicon, natively integrated into LM Studio Bionic.<\/p>\n","protected":false},"author":1,"featured_media":2075,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[417],"tags":[505,1523,1816,522,1818,1547],"class_list":["post-2076","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-companies-and-funding","tag-apple-silicon-en","tag-lm-studio-en","tag-qwen3-6-35b-a3b-en","tag-qwen3-8-en","tag-splash-engine-en","tag-verified"],"lang":"en","translations":{"en":2076,"ja":2074},"_links":{"self":[{"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/posts\/2076","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/comments?post=2076"}],"version-history":[{"count":0,"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/posts\/2076\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/media\/2075"}],"wp:attachment":[{"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/media?parent=2076"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/categories?post=2076"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/localmodelwatch.tsuchitsuchi.com\/en\/wp-json\/wp\/v2\/tags?post=2076"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}