diff options
| author | y-jan137 <yousefjan24000@gmail.com> | 2026-03-18 14:04:47 +0300 |
|---|---|---|
| committer | y-jan137 <yousefjan24000@gmail.com> | 2026-03-18 14:04:47 +0300 |
| commit | 063b20be98747ba0b288545e653ef9489bf14a54 (patch) | |
| tree | b655758d2361dda0c6ffd35d6add6c5ea0f5aba4 /include/tests.h | |
| parent | c9583c9897120cea7357ebc78b621aac0440da2c (diff) | |
Replace DynMLP with DynNet
Diffstat (limited to 'include/tests.h')
| -rw-r--r-- | include/tests.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/tests.h b/include/tests.h index 794c7d6..d3e2acd 100644 --- a/include/tests.h +++ b/include/tests.h @@ -3,7 +3,14 @@ #include "utils.h" void test_ode_solver(void); -void test_dynmlp_gradients(RNG *r); +void test_dynnet_gradients(RNG *r); void test_adjoint_gradients(RNG *r); void test_multi_obs_adjoint(RNG *r); void test_training(RNG *r); +void test_dynnet_deep_gradients(RNG *r); +void test_dynnet_residual_gradients(RNG *r); +void test_dynnet_layernorm_gradients(RNG *r); +void test_dynnet_time_inject_gradients(RNG *r); +void test_dynnet_swish_gradients(RNG *r); +void test_dynnet_softplus_gradients(RNG *r); +void test_adjoint_deep(RNG *r); |