blob: 98bfbbbc329001a9e4c40832edf8b4832fd3e367 [file] [log] [blame]
// mnist float model
// MlModel struct initialization to include model I/O info.
// Bytecode loading, input/output processes.
#include <springbok.h>
#include "iree/base/api.h"
#include "iree/hal/api.h"
#include "samples/util/util.h"
#include "mnist.h"
// Compiled module embedded here to avoid file IO:
#include "samples/float_model/mnist_bytecode_module_dylib_c.h"
#include "samples/float_model/mnist_input_c.h"
const MlModel kModel = {
.num_input = 1,
.num_input_dim = {4},
.input_shape = {{1, 28, 28, 1}},
.input_length = {28 * 28 * 1},
.input_size_bytes = {sizeof(float)},
.num_output = 1,
.output_length = {10},
.output_size_bytes = sizeof(float),
.hal_element_type = IREE_HAL_ELEMENT_TYPE_FLOAT_32,
.entry_func = "module.predict",
.model_name = "mnist",
};
MnistOutput score;
const iree_const_byte_span_t load_bytecode_module_data() {
const struct iree_file_toc_t *module_file_toc =
samples_float_model_mnist_bytecode_module_dylib_create();
return iree_make_const_byte_span(module_file_toc->data,
module_file_toc->size);
}
iree_status_t load_input_data(const MlModel *model, void **buffer) {
iree_status_t result = alloc_input_buffer(model, buffer);
const struct iree_file_toc_t *input_file_toc = mnist_input_c_create();
memcpy(*buffer, input_file_toc->data, input_file_toc->size);
return result;
}
iree_status_t process_output(const MlModel *model,
iree_hal_buffer_mapping_t *buffers,
MlOutput *output) {
iree_status_t result = iree_ok_status();
// find the label index with best prediction
float best_out = 0.0;
int best_idx = -1;
for (int i = 0; i < model->output_length[0]; ++i) {
float out = ((float *)buffers[0].contents.data)[i];
if (out > best_out) {
best_out = out;
best_idx = i;
}
}
score.best_out = best_out;
score.best_idx = best_idx;
LOG_INFO("Digit recognition result is: digit: %d", best_idx);
output->result = &score;
output->len = sizeof(score);
return result;
}