ml/ml-models-public: use log.h to replace springbok.h

Use the processor-neutral header log.h to replace springbok.h. This will
be useful for suppporting kelvin.

Change-Id: Ie16d8c276342b084cff6e3ec21296d6ea11cfd2b
diff --git a/float_models/iree_exec/mnist.c b/float_models/iree_exec/mnist.c
index 77a1be8..4ae4782 100644
--- a/float_models/iree_exec/mnist.c
+++ b/float_models/iree_exec/mnist.c
@@ -20,7 +20,7 @@
 
 #include "mnist.h"
 
-#include <springbok.h>
+#include <log.h>
 
 // Compiled module embedded here to avoid file IO:
 #if !defined(BUILD_EMITC)
diff --git a/float_models/iree_exec/mobilenet_v1.c b/float_models/iree_exec/mobilenet_v1.c
index 5a92940..27946d9 100644
--- a/float_models/iree_exec/mobilenet_v1.c
+++ b/float_models/iree_exec/mobilenet_v1.c
@@ -20,7 +20,7 @@
 
 #include "mobilenet_v1.h"
 
-#include <springbok.h>
+#include <log.h>
 
 // Compiled module embedded here to avoid file IO:
 #include "mobilenet_input_c.h"
diff --git a/quant_models/iree_exec/hps.c b/quant_models/iree_exec/hps.c
index d337ffe..d114e8f 100644
--- a/quant_models/iree_exec/hps.c
+++ b/quant_models/iree_exec/hps.c
@@ -18,7 +18,7 @@
 
 #include "hps.h"
 
-#include <springbok.h>
+#include <log.h>
 
 #if !defined(NO_STATIC_INPUT)
 #include HPS_QUANT_INPUT_C_H
diff --git a/quant_models/iree_exec/mobilenet_v1.c b/quant_models/iree_exec/mobilenet_v1.c
index 1cf0afc..a5cd523 100644
--- a/quant_models/iree_exec/mobilenet_v1.c
+++ b/quant_models/iree_exec/mobilenet_v1.c
@@ -20,7 +20,7 @@
 
 #include "mobilenet_v1.h"
 
-#include <springbok.h>
+#include <log.h>
 
 // Compiled module embedded here to avoid file IO:
 #include "mobilenet_quant_input_c.h"
diff --git a/quant_models/iree_exec/mobilenet_v2.c b/quant_models/iree_exec/mobilenet_v2.c
index f54d466..66a00d7 100644
--- a/quant_models/iree_exec/mobilenet_v2.c
+++ b/quant_models/iree_exec/mobilenet_v2.c
@@ -20,7 +20,7 @@
 
 #include "mobilenet_v2.h"
 
-#include <springbok.h>
+#include <log.h>
 
 // Compiled module embedded here to avoid file IO:
 #include "mobilenet_quant_input_c.h"
diff --git a/quant_models/iree_exec/person_detection.c b/quant_models/iree_exec/person_detection.c
index d6c9993..e7d948b 100644
--- a/quant_models/iree_exec/person_detection.c
+++ b/quant_models/iree_exec/person_detection.c
@@ -20,7 +20,7 @@
 
 #include "person_detection.h"
 
-#include <springbok.h>
+#include <log.h>
 
 // Compiled module embedded here to avoid file IO:
 #if defined(BUILD_VMVX)