Skip to main content

A high-performance toolbox for PhiID computation, accelerated by GPU.

Project description

ΩID

PyPI version License Ask DeepWiki

ΩID is a Python package for calculating the integrated information decomposition (ΦID) of time series data. It is designed for high-performance computing, with optional GPU acceleration via CuPy.

Usage

ΩID provides multiple functions for ΦID calculation, tailored for different use cases.

Bivariate Systems (2x2)

For standard 2x2 systems (e.g., two sources influencing two targets), the legacy implementation offers the highest performance.

import numpy as np
from omegaid.core.phiid import calc_phiid_ccs, calc_phiid_mmi

# Generate some random data for a 2x2 system
src = np.random.randn(1000)
trg = np.random.randn(1000)

# Calculate PhiID using the high-performance CCS method (GPU-accelerated)
atoms_res_ccs, _ = calc_phiid_ccs(src, trg, tau=1)
print("CCS Results (Bivariate):", atoms_res_ccs)

# For theoretical comparison, use the MMI method (CPU-only)
atoms_res_mmi, _ = calc_phiid_mmi(src, trg, tau=1)
print("MMI Results (Bivariate):", atoms_res_mmi)

Multivariate Systems (NxM)

For generalized systems with N sources and M targets, use the multivariate functions.

import numpy as np
from omegaid.core.phiid import calc_phiid_multivariate_ccs, calc_phiid_multivariate_mmi

# Generate data for a 3-source, 3-target system
n_samples = 1000
sources = np.random.randn(n_samples, 3)
targets = np.random.randn(n_samples, 3)

# Calculate PhiID using the generalized CCS method
# Note: The core logic is JIT-compiled with Numba for CPU performance.
# The `xp` backend is used for entropy calculations, allowing GPU use there.
atoms_res_multi_ccs, _ = calc_phiid_multivariate_ccs(sources, targets, tau=1)
print("CCS Results (Multivariate):", atoms_res_multi_ccs)

# The MMI version is also available (CPU-only)
atoms_res_multi_mmi, _ = calc_phiid_multivariate_mmi(sources, targets, tau=1)
print("MMI Results (Multivariate):", atoms_res_multi_mmi)

Installation

ΩID is available on PyPI. You can install it with pip:

With GPU support

To install ΩID with GPU support, you need to have a CUDA-enabled GPU and the CUDA toolkit installed. Choose the command that matches your CUDA version:

For CUDA 12.x:

pip install "omegaid[cuda-12x]"

For CUDA 11.x:

pip install "omegaid[cuda-11x]"

CPU-only

If you don't have a GPU or don't want to use it, you can install the CPU-only version:

pip install omegaid

Benchmarks

The performance of ΩID has been benchmarked across different scenarios.

Bivariate Implementation (calc_phiid_*)

This implementation is highly optimized for 2x2 systems. It shows excellent GPU speedup with calc_phiid_ccs for computations involving a large number of features (dimensions).

The table below shows the performance for the bivariate implementation with 50,000 samples.

Dims Function NumPy Time (s) CuPy Time (s) Perf Ratio
16 calc_phiid_mmi 0.1591 N/A N/A
16 calc_phiid_ccs 0.1738 0.6258 0.28x
64 calc_phiid_mmi 0.1594 N/A N/A
64 calc_phiid_ccs 0.1762 0.0235 7.51x
256 calc_phiid_mmi 0.1577 N/A N/A
256 calc_phiid_ccs 0.1685 0.0230 7.31x
512 calc_phiid_mmi 0.1821 N/A N/A
512 calc_phiid_ccs 0.1680 0.0229 7.34x
1024 calc_phiid_mmi 0.1783 N/A N/A
1024 calc_phiid_ccs 0.1778 0.0237 7.52x

Generalized Multivariate Implementation (calc_phiid_multivariate_*)

This implementation handles arbitrary N-source, M-target systems. After a major refactoring, it now correctly distinguishes between the number of variables (which determines the combinatorial complexity of the information lattice) and the feature dimensions of each variable (which determines the computational cost of the underlying entropy calculations). The entropy calculation is robust against singular covariance matrices by using an SVD-based approach on both CPU and GPU backends.

Performance Summary

The table below summarizes the performance of the refactored multivariate implementation.

System (NxNxFeat) Samples Backend Total Time (s) Perf Ratio
2x2x1 1,000 numpy 2.950 -
cupy 0.428 6.89x
2x2x16 1,000 numpy 3.855 -
cupy 6.336 0.61x
2x2x32 1,000 numpy 13.857 -
cupy 12.521 1.11x
3x3x1 1,000 numpy 1.944 -
cupy 3.390 0.57x

Note: The legacy bivariate implementation remains the fastest option for 2x2 systems, especially those with high feature dimensions.

Conclusion

  1. Refactoring Success: The multivariate backend is now robust, handling high-dimensional features by correctly separating combinatorial (variable-level) from computational (feature-level) complexity.
  2. Performance Trade-offs:
    • GPU excels when both variables and features are low, due to lower overhead.
    • CPU excels when variable count is high, due to its optimization for combinatorial logic.
    • When feature count is high, the raw cost of entropy calculation becomes the main bottleneck, and performance between backends becomes comparable.
  3. Future Work: The fundamental limit is the algorithm's exponential complexity. Further breakthroughs will require algorithmic, not just implementation, innovation.

Citation

If you wish to cite this work, please use the following BibTeX entry:

@misc{omega_id,
  author = {Rui, L.},
  title  = {{ΩID: Integrated Information Decomposition}},
  year   = {2025},
  publisher    = {GitHub},
  url    = {https://github.com/dmf-archive/OmegaID}
}

Project details


Download files

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

Source Distribution

omegaid-0.1.2.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

omegaid-0.1.2-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file omegaid-0.1.2.tar.gz.

File metadata

  • Download URL: omegaid-0.1.2.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for omegaid-0.1.2.tar.gz
Algorithm Hash digest
SHA256 029225545e4cc3747953ad843fa7d3a1bb4a1dde07b82af4e31df1567ef2ff6b
MD5 dc851b90cfab962557f51933721e4025
BLAKE2b-256 3fdd390bac58e6a0eb7e4e5cdd44fd31b12dcc97beb8f53acd19e3f1ba266714

See more details on using hashes here.

Provenance

The following attestation bundles were made for omegaid-0.1.2.tar.gz:

Publisher: publish-to-pypi.yml on dmf-archive/OmegaID

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file omegaid-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: omegaid-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 6.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for omegaid-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a4b9147b9b26df144f6657e65b5f5dda65cb3fcc0f2ca70c69a61442b6ab9747
MD5 30b8a85e9509dd7e67201b6484f5a7d0
BLAKE2b-256 17cf716e57772237074be43500cbda52a8945aa9b18e7fa0a8443a9a65300b2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for omegaid-0.1.2-py3-none-any.whl:

Publisher: publish-to-pypi.yml on dmf-archive/OmegaID

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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