CX/include/cx.h
Marcel Plch 04bf753f09
Improve neural randomization
Start implementing neural training algorithm.
2024-10-26 09:55:43 +02:00

36 lines
566 B
C

#ifndef CX_H
#define CX_H
// Include standard headers
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <time.h>
#include <unistd.h>
#include <stdint.h>
// Include GLEW
#include <GL/glew.h>
// Include GLFW
#define GLFW_INCLUDE_VULKAN
#include <GLFW/glfw3.h>
// Include project headers
#include <tensor.h>
#include <model.h>
#include <tensor.h>
#include <shader.h>
#include <neural.h>
// Declare functions
int cx_glinit(GLFWwindow **);
int cx_nninit(Neural_Network **);
int cx_run(GLFWwindow *, Neural_Network *);
#endif