mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-12-22 14:24:22 +00:00
12 lines
285 B
Plaintext
12 lines
285 B
Plaintext
#pragma once
|
|
|
|
// CUDA Backend Implementation
|
|
#include "backend/cuda/cuda.cuh"
|
|
|
|
// CUDA Kernels
|
|
#include "backend/cuda/kernels/activation_functions.cuh"
|
|
#include "backend/cuda/kernels/convolution.cuh"
|
|
#include "backend/cuda/kernels/matmul.cuh"
|
|
#include "backend/cuda/kernels/pool.cuh"
|
|
|