From 9f3fe1a575eb6a3a6659cfdd35b9e3f1655a62cf Mon Sep 17 00:00:00 2001
From: Martin Larralde <martin.larralde@embl.de>
Date: Fri, 21 Jun 2024 11:30:15 +0200
Subject: [PATCH] Add tests for NEON implementation of `Score<u8>`

---
 lightmotif/tests/dna.rs | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/lightmotif/tests/dna.rs b/lightmotif/tests/dna.rs
index 6282428..9776677 100644
--- a/lightmotif/tests/dna.rs
+++ b/lightmotif/tests/dna.rs
@@ -358,11 +358,12 @@ mod neon {
         super::test_score_rows::<U16, _>(&pli);
     }
 
-    // #[test]
-    // fn score_discrete() {
-    //     let pli = Pipeline::neon().unwrap();
-    //     super::test_score_discrete(&pli);
-    // }
+    #[test]
+    fn score_discrete() {
+        let pli = Pipeline::neon().unwrap();
+        super::test_score_discrete::<U32, _>(&pli);
+        super::test_score_discrete::<U16, _>(&pli);
+    }
 
     #[test]
     fn argmax() {
-- 
GitLab