CX/include/cx.h

37 lines
566 B
C
Raw Normal View History

#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
2023-12-13 09:56:21 +00:00
#define GLFW_INCLUDE_VULKAN
#include <GLFW/glfw3.h>
// Include project headers
#include <tensor.h>
#include <model.h>
#include <tensor.h>
#include <shader.h>
2024-07-06 15:59:22 +00:00
#include <neural.h>
// Declare functions
2024-10-19 09:32:39 +00:00
int cx_glinit(GLFWwindow **);
2024-07-06 15:59:22 +00:00
int cx_nninit(Neural_Network **);
2024-10-19 09:32:39 +00:00
int cx_run(GLFWwindow *, Neural_Network *);
2024-07-06 15:59:22 +00:00
#endif