PSEEDR

The Post-Transformer Era: How Inkling's 975B Hybrid Architecture Forces Evolution in Inference Infrastructure

Thinking Machines Lab's new multimodal MoE model abandons standard Transformer conventions, requiring custom FlashAttention-4 kernels to achieve production viability.

· PSEEDR Editorial

The release of Thinking Machines Lab's 975B-parameter Inkling model, announced via a Together AI blog post, signals a definitive shift away from uniform Transformer architectures toward highly customized, hybrid designs. By abandoning standard positional embeddings in favor of query-conditioned relative attention and short causal convolutions, Inkling highlights a growing ecosystem reality: novel model architectures now require tightly co-designed inference kernels to be economically viable in production environments.

The Architectural Departure from Standard Transformers

At 975 billion total parameters with only 40 billion active parameters per token, Inkling operates at a massive scale while maintaining a sparse execution profile. However, its most significant technical contributions lie in its departure from standard decoder-only Transformer conventions. Most notably, the model abandons Rotary Positional Embeddings (RoPE) and absolute position embeddings entirely. Instead, Inkling incorporates token position directly into its attention mechanism through a learned, query-conditioned relative bias. By combining conventional query-key similarity scores with an additional score based on relative token distance, the architecture gains a more flexible mechanism for representing token order and local context.

This localized focus is further reinforced by a hybrid attention pattern. Inkling mixes sliding-window and full causal attention throughout its network, utilizing a repeating pattern of five local-attention layers followed by one full-attention layer. This design allows the model to process its massive 1-million-token context window efficiently by restricting most layers to recent context, while periodically forcing a global routing of information across the entire sequence.

Furthermore, Thinking Machines Lab has reintroduced convolutions into the LLM stack. Inkling utilizes sconv, a lightweight channelwise causal convolution with a four-token receptive field. Applied to the key and value streams prior to attention, as well as to the outputs of the attention and feed-forward sublayers, these short convolutions provide an alternative mechanism for blending information across adjacent tokens without incurring the quadratic compute cost of full attention.

Finally, the model alters standard Mixture-of-Experts (MoE) routing through a "shared expert sink." In conventional shared-expert MoE designs, shared experts operate independently of the routed experts. In Inkling, the router normalizes the shared experts and the selected routed experts together. This forces the shared path to dynamically compete for mixture weight on a per-token basis, theoretically leading to more efficient parameter utilization during complex reasoning tasks.

Co-Designing Hardware Kernels for Custom Architectures

The introduction of query-conditioned relative attention, sconv layers, and shared-sink MoE routing presents a severe challenge for standard inference infrastructure. Off-the-shelf serving engines optimized for Llama or Mistral architectures rely heavily on standardized FlashAttention implementations that assume standard RoPE and query-key-value projections. Running Inkling on standard infrastructure would likely result in severe memory bottlenecks and unoptimized hardware utilization.

This highlights the critical role of infrastructure providers in the modern AI ecosystem. To serve Inkling on Day 0, Together AI had to deploy a custom FlashAttention-4-based attention kernel specifically designed to handle the model's query-conditioned relative attention mechanism. This level of co-design indicates that the moat for inference providers is shifting. Raw GPU availability is no longer sufficient; providers must possess the low-level CUDA and kernel engineering expertise required to rapidly optimize non-standard architectures for production environments.

Controllable Inference and Multimodal Unification

Beyond its internal architecture, Inkling introduces native multimodal unification and dynamic compute scaling at the API level. The model accepts text, image, and audio inputs through a single endpoint. Rather than relying on complex external pipelines, Inkling uses lightweight embedding towers to transform image patches and quantized audio features into embeddings that match the dimensional width of text tokens. These are inserted directly into the input sequence, allowing the unified decoder stack to reason jointly over multiple modalities.

Additionally, Inkling exposes a controllable inference effort parameter. This allows developers to explicitly trade off reasoning depth, latency, and token spend on a per-request basis. While the concept of test-time compute scaling is gaining traction across the industry, integrating this control directly into a hybrid MoE architecture provides granular control over the model's 40-billion active parameter budget, allowing applications to dynamically scale compute based on task complexity.

Limitations and Open Questions

Despite the architectural advancements detailed in the release, several critical data points remain absent. The announcement claims strong performance across graduate-level scientific reasoning, competition mathematics, and coding, but omits specific quantitative benchmark scores. Without standardized metrics (such as GPQA, MATH, or HumanEval), evaluating Inkling's actual reasoning capabilities against current frontier models is impossible.

Technically, the specifications of the FlashAttention-4 kernel are not detailed. It remains unclear how this iteration differs from FlashAttention-3, particularly regarding its handling of relative attention biases and its utilization of specific hardware architecture features. Furthermore, the exact values, scaling behavior, and cost implications of the reasoning_effort API parameter are not specified, leaving developers without clear guidelines on how to optimize their workloads.

Finally, there is a distinct lack of transparency regarding Thinking Machines Lab itself. Information regarding the model's training dataset composition, the total compute budget utilized for the 975-billion parameter run, and the organizational background of the lab is missing. This opacity complicates efforts to assess the model's safety, bias, and long-term viability.

Ecosystem Implications

The release of Inkling underscores a fracturing of the LLM landscape. The era of the uniform, easily portable Transformer is giving way to highly customized, hybrid architectures designed to maximize efficiency at massive scales. While innovations like sconv and shared-sink MoE routing push the boundaries of model performance, they simultaneously increase the friction of open-weight adoption. If novel models require bespoke hardware kernels to run efficiently, the average enterprise will struggle to self-host them. Consequently, deep technical partnerships between model builders and specialized infrastructure providers will become a mandatory requirement for bringing next-generation architectures to production.

Key Takeaways

  • Inkling is a 975B total parameter (40B active) multimodal MoE model that abandons standard RoPE for query-conditioned relative attention.
  • The architecture introduces short causal convolutions (sconv) and a shared-sink MoE routing mechanism to optimize parameter efficiency.
  • Standard inference engines cannot efficiently run this architecture, requiring Together AI to deploy a custom FlashAttention-4 kernel for Day-0 support.
  • The model features a unified decoder for text, image, and audio, alongside a controllable inference parameter to dynamically scale test-time compute.
  • The release highlights a growing trend where novel model architectures require deep co-design with infrastructure providers to achieve production viability.

Sources