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.

Features

  • Backend Agnostic: Seamlessly switch between CPU (NumPy) and GPU (CuPy) for computation.
  • High Performance: Vectorized operations and GPU support for significant speedups on large datasets.
  • Numerical Integrity: Results are numerically consistent with the original phyid implementation.

Installation

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

Standard Installation (CPU only)

pip install omegaid

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]"

Usage

Selecting the Backend

You can select the computation backend by setting the OMEGAID_BACKEND environment variable before running your Python script.

  • For NumPy (default):

    export OMEGAID_BACKEND=numpy
    
  • For CuPy:

    export OMEGAID_BACKEND=cupy
    

If the variable is not set, OmegaID will default to using NumPy.

Example

Here is a simple example of how to use omegaid to calculate the Phi-ID decomposition.

import numpy as np
from omegaid.core.decomposition import calc_PhiID
from omegaid.utils.backend import set_backend

# For programmatic control, you can also use set_backend
# set_backend('cupy') 

# Generate some random time series data
n_samples = 10000
tau = 1
src = np.random.randn(n_samples)
trg = np.random.randn(n_samples)

# Calculate Phi-ID
atoms_res, calc_res = calc_PhiID(src, trg, tau)

# Print the synergistic atom (sts)
print("Synergy (sts):", np.mean(atoms_res["sts"]))

Performance

The package has been benchmarked against the original phyid implementation. The NumPy backend provides a consistent ~1.4-2x speedup. The CuPy backend shows significant performance gains on larger datasets, leveraging GPU acceleration effectively.

Note: The current benchmarks are based on a 2x2 system (two scalar time series).

Data Size Original (scipy) OmegaID (numpy) OmegaID (cupy) NumPy Speedup CuPy Speedup
10,000 0.0112s 0.0071s 0.3243s 1.58x 0.03x
100,000 0.1161s 0.0846s 0.0932s 1.37x 1.25x
500,000 0.6492s 0.4592s 0.3207s 1.41x 2.02x

The results demonstrate that for data lengths exceeding 100,000 samples, the CuPy backend begins to outperform both the original and the NumPy-based implementations, with the trend suggesting greater speedups for even larger datasets.

License

This project is licensed under the BSD 3-Clause License.

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.2.3.tar.gz (38.1 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.2.3-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for omegaid-0.2.3.tar.gz
Algorithm Hash digest
SHA256 c519c805d70e188112bcff173dfd559f9602faab81837a775edf7bf4ce6652b3
MD5 f351fdb8ca6c9129dfbc6eb8bbcb12b2
BLAKE2b-256 f31cb0109411d183031db3ba439312b2a59e6be230022aa39aa839a9add90676

See more details on using hashes here.

Provenance

The following attestation bundles were made for omegaid-0.2.3.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.2.3-py3-none-any.whl.

File metadata

  • Download URL: omegaid-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 9.9 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.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 55408d7df63ad057caa9e64bb035a87ef84a47eafd0e82f9d4abf5c48e218b35
MD5 deb089de1ac4feae9ed98bffa05b4c86
BLAKE2b-256 79a6ff03a9535579b52c3f2d187d7a347b961b2c6dac115717a9a22eb3c0fe21

See more details on using hashes here.

Provenance

The following attestation bundles were made for omegaid-0.2.3-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