Skip to content
View pyxpcs's full-sized avatar

Block or report pyxpcs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
pyxpcs/README.md

Python XPCS Toolkit

Dependencies

  • CMake version 3+
  • OpenMP
  • HDF5

Fetch the code

git clone --recurse-submodules https://github.com/pyxpcs/pyxpcs.git

Install

To build a python package including the C/C++ extension. In the root directory:

python setup.py install

To build only the C/C++ code.

mkdir build
cd build
cmake ../
make -j

Running

import pyxpcs as px
import numpy as np


config = {
    'frames': 200,
    'pixels': 100,
    'dpl': 4,
    'height': 10,
    'width': 10
}

pixels = np.arange(100)
times = np.meshgrid(np.arange(200), np.arange(100))[0]
values = np.random.rand(100, 200)

px.multitau(pixels, times, values, **config);

Popular repositories Loading

  1. pyxpcs pyxpcs Public

    C++ 1 2

  2. keras-retinanet keras-retinanet Public

    Forked from fizyr/keras-retinanet

    Keras implementation of RetinaNet object detection.

    Python