Skip to main content

Version Compatibility

Since the DEEPX SDK maintains strict version dependencies between modules, it is essential to consult the compatibility matrix below when performing updates. DX-AllSuite ensures that all components are integrated and managed in validated, optimal combinations.

DXNN SDK Version Compatibility Matrix

Release DateDX-AllSuite
DX-CompilerDX-Runtime
DX-COMDX-TRONDX-FWNPU DriverDX-RTDX-StreamDX-APP
2026-05-14v2.3.3
v2.3.1v2.3.3
v2.3.0v2.0.1v2.5.6v2.4.1v3.3.2v3.0.1v3.1.1
2026-05-11v2.3.2
v2.3.1v2.3.2
v2.3.0v2.0.1v2.5.6v2.4.1v3.3.2v3.0.1v3.1.1
2026-05-06v2.3.1
v2.3.1v2.3.1
v2.3.0v2.0.1v2.5.6v2.4.1v3.3.1v3.0.1v3.1.1
2026-04-10v2.3.0
v2.3.0v2.3.0
v2.3.0v2.0.1v2.5.6v2.4.1v3.3.0v3.0.0v3.1.0
2026-02-26v2.2.2
v2.2.1v2.2.2
v2.2.1v2.0.1v2.5.0v2.1.0v3.2.0v2.2.1v3.0.2
2026-02-09v2.2.1
v2.2.0v2.2.1
v2.2.0v2.0.1v2.5.0v2.1.0v3.2.0v2.2.0v3.0.1
2026-01-16v2.2.0
v2.2.0v2.2.0
v2.2.0v2.0.1v2.5.0v2.1.0v3.2.0v2.2.0v3.0.0
2025-11-28v2.1.0
v2.1.0v2.1.0
v2.1.0v2.0.0v2.4.0v1.8.0v3.1.0v2.1.0v2.1.0
2025-09-08v2.0.0
v2.0.0v2.0.0
v2.0.0v2.0.0v2.1.4v1.7.1v3.0.0v2.0.0v2.0.0
2025-07-23v1.0.0
v1.0.0v1.0.0
v1.60.1v0.0.8v2.1.0v1.5.0v2.9.5v1.7.0v1.11.0

How to Check Your System Version

To ensure system stability, identify the versions of your currently installed components and compare them with the Version Compatibility Matrix provided above.

Step 1. Hardware & Drivers (Target Side)
You can immediately verify the Firmware (FW) and NPU Driver versions using the NPU status utility.

# Display NPU status and driver information
dxrt-cli -s

Step 2. Compiler (Host Side)
Verify the version of the model conversion tool (dxcom). Note that the virtual environment must be activated for the command to be recognized.

# Execute within an activated virtual environment
dxcom -v

Alternative (via Python)
If you are using the compiler as a library, you can also check the version directly via Python.

python3 -c "import dx_com; print(dx_com.__version__)"