Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 727 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 727 Bytes

Loops

This is instant cross-platform jit engine inspired by Xbyak

Loopslayers

Small library of of generators for neural network layers.

Currently has:
1.) Depthwise convolution with padding. Strides 1 or 2. No dilations. Activatons: none, ReLU, ReLU6, LeakyReLU.
2.) Maxpooling with padding. Strides 1 or 2. No dilations. Activatons: none, ReLU, ReLU6, LeakyReLU.

How to build loopslayers

Needs C++ compiler and cmake.

cd <build_dir>
cmake <loops_dir> .
make

Library built can be linked to other project via appending include path <loops_dir>\include, link library path <build_dir>\ and linking <build_dir>\libloopslayers.a and <build_dir>\libloops.a

(Or .lib, if your system is Windows)