Checking Compatibility#

This document provides compatibility information for the software products offered by Mobilint. When configuring or updating the system, you must refer to the table below to ensure that compatible versions are used. Using incompatible combinations may result in unexpected behavior or system errors, and normal operation cannot be guaranteed.

Linux/Ubuntu#

Driver-Runtime-Firmware Compatibility#

Driver Ver.

Runtime Ver.

Firmware Ver.

1.0 ~ 1.9

0.28.0 ~ 0.30.1

1.1.1 ~ 1.2.3

Windows#

Driver-Runtime-Firmware Compatibility#

Driver Ver.

Runtime Ver.

Firmware Ver.

1.6.230

0.28.0 ~ 0.30.0

1.1.1 ~ 1.2.3

1.7.1 ~ latest

0.30.1 ~ 0.30.1

1.1.1 ~ 1.2.3

MXQ Compatibility Matrix#

To run a deep learning model optimized for Mobilint’s hardware (MXQ file extension), you must use a runtime that supports the specific MXQ format version on which the model is based.

This section provides a compatibility matrix of MXQ files for each runtime:

Runtime Ver.

MXQ Ver.

0.29.0 ~ 0.30.1

MXQv1 ~ MXQv6

0.28.0 ~ 0.28.0

MXQv1 ~ MXQv5

How to check the version#

Runtime Library#

If you downloaded the runtime library from the official Download Center, the version information is typically available at the time of download.

Alternatively, you can print out version via runtime provided method :

// C++ Example
std::cout << mobilint::getMaccelVersion() << "\n";
# Python Example
print(maccel.__version__)

Driver, Firmware#

You can check both driver and firmware versions using utility tool. For utility installation instructions, check installing utility.

  • Linux/Ubuntu

    • In Linux/Ubuntu environments, you can use utility mobilint-cli to check driver and firmware versions.

    • Run the following command:

      mobilint-cli status
      
    • Driver and firmware versions will appear in red box section of the output, as shown below.

    Version Check

  • Windows

    • In Windows environments, you can use utility mobilint ctrl to check driver and firmware versions.

    • After installing utilities according to installing utility, run downloaded file mobilint_ctrl.exe.

    • Driver and firmware versions will be displayed in red box section, as shown below:

    Win Version Check

MXQ#

Caution

Currently, MXQ version checking tool is available only for Linux/Ubuntu environments.

  • You can check MXQ version using mobilint-cli utility tool.

  • Run following command:

    mobilint-cli mxqtool show {mxq_path}
    

    Example output:

    $ mobilint-cli mxqtool show resnet50_IMAGENET1K_V1.mxq
    Format Version:           0x60000
    Compiler Version:         0.10.0.0
    Hardware Version:         Aries2
    ...
    
  • The most significant digit of “Format Version” value indicates MXQ version. For example, “0x60000” corresponds to MXQv6.