Dense Layer, Add

added the dense layer with a forward functions. I also made the add functions for most cases.
This commit is contained in:
2026-06-25 19:43:07 +02:00
parent 9b20278395
commit 189d605bfa
27 changed files with 1657 additions and 902 deletions
+5 -4
View File
@@ -45,7 +45,7 @@
//---------------------------------------------------------------------------------------------------------------------------
// TYPE DESCRIPTION
//---------------------------------------------------------------------------------------------------------------------------
// Type Name : panic::uint_t
// Type Name : panic::types::uint_t
//
// Description:
// Default unsigned integer type used inside PANIC.
@@ -54,7 +54,7 @@
// uint32_t
//---------------------------------------------------------------------------------------------------------------------------
//
// Type Name : panic::int_t
// Type Name : panic::types::int_t
//
// Description:
// Default signed integer type used inside PANIC.
@@ -63,7 +63,7 @@
// int32_t
//---------------------------------------------------------------------------------------------------------------------------
//
// Type Name : panic::real_t
// Type Name : panic::types::real_t
//
// Description:
// Default floating-point type used inside PANIC.
@@ -73,11 +73,12 @@
//---------------------------------------------------------------------------------------------------------------------------
namespace panic {
namespace types{
typedef uint32_t uint_t;
typedef int32_t int_t;
typedef float real_t;
} // namespace types
} // namespace panic