<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Robert Reilly</title>
    <description>The latest articles on DEV Community by Robert Reilly (@rdreilly58).</description>
    <link>https://dev.to/rdreilly58</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2843694%2Ff68f60a1-6974-48ce-86d2-1cdd119bb739.jpeg</url>
      <title>DEV Community: Robert Reilly</title>
      <link>https://dev.to/rdreilly58</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rdreilly58"/>
    <language>en</language>
    <item>
      <title>Intrducing momo-kiji: CUDA for Apple Neural Engine</title>
      <dc:creator>Robert Reilly</dc:creator>
      <pubDate>Thu, 19 Mar 2026 08:42:26 +0000</pubDate>
      <link>https://dev.to/rdreilly58/intrducing-momo-kiji-cuda-for-apple-neural-engine-10gn</link>
      <guid>https://dev.to/rdreilly58/intrducing-momo-kiji-cuda-for-apple-neural-engine-10gn</guid>
      <description>&lt;h1&gt;
  
  
  Introducing momo-kiji: CUDA for Apple Neural Engine
&lt;/h1&gt;

&lt;p&gt;&lt;em&gt;Cross-posted to Medium and Hashnode&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every Apple device has an Apple Neural Engine. Every single one. Billions of them.&lt;/p&gt;

&lt;p&gt;Yet most ML developers ignore it completely.&lt;/p&gt;

&lt;p&gt;Why? Because there's no good way to target it. CoreML is locked down. You can't bring your own models. You're stuck in Apple's walled garden.&lt;/p&gt;

&lt;p&gt;Meanwhile, that ANE sits there doing nothing most of the time—a 10x efficiency boost, completely untapped.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing momo-kiji
&lt;/h2&gt;

&lt;p&gt;Today, we're releasing &lt;strong&gt;momo-kiji&lt;/strong&gt;—an open-source CUDA-like SDK for Apple Neural Engine.&lt;/p&gt;

&lt;p&gt;It's simple: compile your model once, target ANE directly, and get 10x better efficiency without rewriting anything.&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
python
import momo_kiji as mk

# Load any model
model = mk.load("model.onnx")

# Compile for ANE
compiled = model.compile(target="ane")

# Deploy
compiled.save("model_ane.mlmodel")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>machinelearning</category>
      <category>ai</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
