TOSA reference model example not working with v0.80

Hello TOSA folks, upon running the following sequence to set up and run a reference model example:

git clone https://git.mlplatform.org/tosa/reference_model
cd reference_model/
git submodule update --init --recursive
git checkout --recurse-submodules v0.80
mkdir -p build
cd build/
cmake -G Ninja ..
ninja
cd ..
./build/reference_model/tosa_reference_model --test_desc=examples/test_add_1x4x4x4_f32/flatbuffer-tflite/desc.json

I get this output from the last command:

WARNING: Different Tosa flatbuffer and serializer versions detected. Read Tosa flatbuffer version 0.80.0d is backward compatible with serializer version 0.80.0

It’s not clear what I should do here to fix this.

Hi Suraj, seems we forgot to update the example Flatbuffer files. Will upstream the fix ASAP.

Thanks for noticing this issue.

Jerry

1 Like

Hi Suraj,

The warning should be fixed now: https://review.mlplatform.org/c/tosa/reference_model/+/10839.

Jerry

That worked, thanks @Jerry-Ge !

1 Like