CellularAutomata
Loading...
Searching...
No Matches
cpu.hpp
1#pragma once
2
3#include "common.hpp"
4
5namespace CellularAutomata
6{
7 namespace cpu
8 {
25 template <typename T, typename Activation>
26 void epoch(
27 const T* input, const T* kernel, T* output, Activation fn,
28 const unsigned int h, const unsigned int w, const unsigned int s, const bool r);
29 }
30}
31
32#include "cpu.inl"
Main namespace.
Definition common.hpp:33