ml/ml-models-public: Name change for model library_query This is due to upstream change. Change-Id: I5fe3ce651b0e995ec3c7bff5c2c63bef5e900876
diff --git a/float_models/iree_exec/mobilenet_v1.c b/float_models/iree_exec/mobilenet_v1.c index 04329ee..5a92940 100644 --- a/float_models/iree_exec/mobilenet_v1.c +++ b/float_models/iree_exec/mobilenet_v1.c
@@ -49,7 +49,7 @@ } iree_hal_executable_library_query_fn_t library_query(void) { - return &mobilenet_v1_0_25_224_float_linked_llvm_cpu_library_query; + return &llvm_module_linked_llvm_cpu_library_query; } iree_status_t load_input_data(const MlModel *model, void **buffer,
diff --git a/quant_models/iree_exec/hps.c b/quant_models/iree_exec/hps.c index 68cd767..d337ffe 100644 --- a/quant_models/iree_exec/hps.c +++ b/quant_models/iree_exec/hps.c
@@ -53,7 +53,7 @@ } iree_hal_executable_library_query_fn_t library_query(void) { - return &hps_quant_linked_llvm_cpu_library_query; + return &llvm_module_linked_llvm_cpu_library_query; } iree_status_t load_input_data(const MlModel *model, void **buffer,
diff --git a/quant_models/iree_exec/mobilenet_v1.c b/quant_models/iree_exec/mobilenet_v1.c index badf53d..1cf0afc 100644 --- a/quant_models/iree_exec/mobilenet_v1.c +++ b/quant_models/iree_exec/mobilenet_v1.c
@@ -49,7 +49,7 @@ } iree_hal_executable_library_query_fn_t library_query(void) { - return &mobilenet_v1_0_25_224_quant_linked_llvm_cpu_library_query; + return &llvm_module_linked_llvm_cpu_library_query; } iree_status_t load_input_data(const MlModel *model, void **buffer,
diff --git a/quant_models/iree_exec/mobilenet_v2.c b/quant_models/iree_exec/mobilenet_v2.c index e6c09b7..f54d466 100644 --- a/quant_models/iree_exec/mobilenet_v2.c +++ b/quant_models/iree_exec/mobilenet_v2.c
@@ -49,7 +49,7 @@ } iree_hal_executable_library_query_fn_t library_query(void) { - return &mobilenet_v2_1_0_224_quant_linked_llvm_cpu_library_query; + return &llvm_module_linked_llvm_cpu_library_query; } iree_status_t load_input_data(const MlModel *model, void **buffer,
diff --git a/quant_models/iree_exec/person_detection.c b/quant_models/iree_exec/person_detection.c index 0edcdcc..d6c9993 100644 --- a/quant_models/iree_exec/person_detection.c +++ b/quant_models/iree_exec/person_detection.c
@@ -63,7 +63,7 @@ #if !defined(BUILD_VMVX) iree_hal_executable_library_query_fn_t library_query(void) { - return &person_detection_linked_llvm_cpu_library_query; + return &llvm_module_linked_llvm_cpu_library_query; } #endif