Skip to main content

XMOS AI Tools

Project description

XMOS AI Tools

Usage

xformer

from xmos_ai_tools import xformer as xf

xf.convert("source model path", "converted model path", params=None)

where params is a dictionary of compiler flags and paramters and their values.

For example:

from xmos_ai_tools import xformer as xf

xf.convert("example_int8_model.tflite", "xcore_optimised_example_int8_model.tflite", {
    "mlir-disable-threading": None,
    "xcore-reduce-memory": None,
})

To see all available parameters, call

from xmos_ai_tools import xformer as xf

xf.print_help()

This will print all options available to pass to xformer. To see hidden options, run print_help(show_hidden=True)

xinterpreters

from xmos_ai_tools.xinterpreters import xcore_tflm_host_interpreter
from xmos_ai_tools.xinterpreters import xcore_tflm_usb_interpreter
from xmos_ai_tools.xinterpreters import xcore_tflm_spi_interpreter

ie = xcore_tflm_host_interpreter()
ie.set_model(model_path = xcore_model, model_index = 0, secondary_memory = False, flash = False)
#secondary_memory and flash arguments ignored on xcore_tflm_host_interpreter
ie.set_input_tensor(data = input, input_index = 0, model_index = 0)
ie.invoke()

xformer_outputs = []
for i in range(num_of_outputs):
    xformer_outputs.append(ie.get_output_tensor(output_index = i, model_index = 0))

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

xmos_ai_tools-0.1.8-py3-none-win_amd64.whl (10.0 MB view hashes)

Uploaded Python 3 Windows x86-64

xmos_ai_tools-0.1.8-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (38.5 MB view hashes)

Uploaded Python 3 manylinux: glibc 2.12+ x86-64

xmos_ai_tools-0.1.8-py3-none-macosx_11_0_arm64.whl (13.0 MB view hashes)

Uploaded Python 3 macOS 11.0+ ARM64

xmos_ai_tools-0.1.8-py3-none-macosx_10_9_x86_64.whl (12.5 MB view hashes)

Uploaded Python 3 macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page