Performance-obsessed, dependency-free software.
Crafted in C. Open source. Built to last.
We don't add layers of abstraction. We remove them.
The philosophy behind every line of code we ship.
Machine learning, uncompromised.
A complete deep learning framework in pure C. SIMD-optimized, Vulkan-accelerated, zero dependencies.
AVX2, AVX-512, ARM NEON. Every hot path hand-tuned with intrinsics.
14 GLSL compute shaders via Vulkan. Matrix ops on GPU.
22 differentiable operations. Full computational graph.
Post-training quantization. Shrink models 4x for edge.
How it compares
Dead simple
No CMake wizardry, no vcpkg, no conan. Add the include folder to your compiler path and you're done. Header-only.
#include "aicraft/aicraft.h"int main() { ac_init(); // Build a simple classifier AcLayer *net[] = { ac_dense(784, 128, AC_RELU), ac_dense(128, 10, AC_SOFTMAX) };
// Forward + backward AcTensor *x = ac_tensor_rand((int[]){1, 784}, 2); AcTensor *y = ac_forward_seq(net, 2, x); ac_backward(y); ac_cleanup();}Our approach
We write C, not wrappers around C. Every hot path is profiled, every allocation is intentional.
Our software compiles on anything with a C compiler. No package managers, no supply-chain risk.
Every line is public. We believe engineers deserve tools they can read, understand, and extend.
Tech stack
Preventivo
Seleziona il servizio, compila il modulo e ti ricontatteremo entro 24 ore.
Get started
Explore Aicraft, read the docs, or dive into the source.
T&M Softwares — Tobias Tesauri