COMPMID-2685: [CL] Use Weights manager

Change-Id: Ia1818e6ecd9386e96378e64f14d02592fe3cdf0f
Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com>
Reviewed-on: https://review.mlplatform.org/c/1997
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
diff --git a/src/graph/GraphContext.cpp b/src/graph/GraphContext.cpp
index c959d5e..4d97807 100644
--- a/src/graph/GraphContext.cpp
+++ b/src/graph/GraphContext.cpp
@@ -79,7 +79,7 @@
 {
     Target target = weights_managers.target;
 
-    if(target != Target::NEON || _weights_managers.find(target) != std::end(_weights_managers))
+    if(_weights_managers.find(target) != std::end(_weights_managers))
     {
         return false;
     }