commit | 674732a1ccf93880c76e21abb1f77c9d0f761a41 | [log] [tgz] |
---|---|---|
author | Scott Todd <scotttodd@google.com> | Tue Jan 11 12:01:07 2022 -0800 |
committer | GitHub <noreply@github.com> | Tue Jan 11 12:01:07 2022 -0800 |
tree | 16171881a478a85dcdc2fa8e983a0d906df90da4 | |
parent | e3c45bb9a900021ae45ef746a197d535d044e8cb [diff] |
Cast from uint8_t* to char* in generate_embed_data, fixing warning. (#8071) (open to other fixes here, but this seemed like the obvious one to me) ``` [1/4] Building C object experimental/sample_web_...web_static.dir/generated/simple_mul_bytecode.c.o ../experimental/sample_web_static/generated/simple_mul_bytecode.c:38:5: warning: initializing 'const char *' with an expression of type 'const uint8_t[3991]' (aka 'const unsigned char[3991]') converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign] file_0, ^~~~~~ ``` generated code before (note the `const char* data` and `uint8_t`): ```c typedef struct iree_file_toc_t { const char* name; // the file's original name const char* data; // beginning of the file size_t size; // length of the file } iree_file_toc_t; IREE_DATA_ALIGNAS_PTR static uint8_t const file_0[] = {16,0,0,0, ...}; static const struct iree_file_toc_t toc[] = { { "simple_mul.vmfb", file_0, sizeof(file_0) - 1 }, {NULL, NULL, 0}, }; ``` with this change, keeping the types but just inserting a cast: ```c static const struct iree_file_toc_t toc[] = { { "simple_mul.vmfb", (const char*)file_0, sizeof(file_0) - 1 }, {NULL, NULL, 0}, }; ```
IREE (Intermediate Representation Execution Environment, pronounced as “eerie”) is an MLIR-based end-to-end compiler and runtime that lowers Machine Learning (ML) models to a unified IR that scales up to meet the needs of the datacenter and down to satisfy the constraints and special considerations of mobile and edge deployments.
See our website for project details, user guides, and instructions on building from source.
IREE is still in its early phase. We have settled down on the overarching infrastructure and are actively improving various software components as well as project logistics. It is still quite far from ready for everyday use and is made available without any support at the moment. With that said, we welcome any kind of feedback on any communication channels!
See our website for more information.
IREE is licensed under the terms of the Apache 2.0 License with LLVM Exceptions. See LICENSE for more information.