This commit is contained in:
Jerome Kieffer 2016-06-30 14:36:05 +02:00
parent 2d28355b85
commit 0a2d093cf2
3 changed files with 0 additions and 86 deletions

View File

@ -1,38 +0,0 @@
TODO list:
==========
* include Raster Orientation of images (in pyFAI? in fabio?)
* have geometries as pluggable classes (!!!) --> Version 2
* GISAXS geometry
* Full GUI for calibration
* Ensure direct and reverse algorithm give EXACTLY the same numerical value (float32/float64 issue)
Refactor _geometry.pyx
----------------------
* add Fused-types (template) with float/double for all calculations
* propose the output dtype as parameter
* refactor cdef stuf
Done list
=========
* migrate forward version of histogramming on GPU to PyOpenCL (Done in v0.8.0)
* recalibration tool (Done in v.0.8.0) using a poni file and a d-spacing file and an image
* prepare 2 packages one without OpenCL and one with GPU enabled (no more needed with pyopencl)
* use a fast checksum to store the signature of buffers/array which are on the GPU (Done v0.8.0).
* in LUT-OpenCL; iterate only up to max_lut_in_workgroup
* move the uint16 -> float32 or int32 -> float32 to GPU when possible
* port spline calculation to opencl
* add mask on calibration/recalibration tools (Done v0.8)
* implement LUT on 2D caking as well + OpenCL version
* binning at the Azimuthal Integrator level
Python3
=======
PyFAI is tested under Python 2.6, 3.7, 3.2, 3.3 and 3.4.
Done:
-----
* cmp function in sort:
- in io.py & peakpickeruse the key argument
* Metaclass in detector via six

View File

@ -1,48 +0,0 @@
:: To build extensions for 64 bit Python 3, we need to configure environment
:: variables to use the MSVC 2010 C++ compilers from GRMSDKX_EN_DVD.iso of:
:: MS Windows SDK for Windows 7 and .NET Framework 4 (SDK v7.1)
::
:: To build extensions for 64 bit Python 2, we need to configure environment
:: variables to use the MSVC 2008 C++ compilers from GRMSDKX_EN_DVD.iso of:
:: MS Windows SDK for Windows 7 and .NET Framework 3.5 (SDK v7.0)
::
:: 32 bit builds do not require specific environment configurations.
::
:: Note: this script needs to be run with the /E:ON and /V:ON flags for the
:: cmd interpreter, at least for (SDK v7.0)
::
:: More details at:
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows
:: http://stackoverflow.com/a/13751649/163740
::
:: Author: Olivier Grisel
:: License: BSD 3 clause
@ECHO OFF
SET COMMAND_TO_RUN=%*
SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows
SET MAJOR_PYTHON_VERSION="%PYTHON_VERSION:~0,1%"
IF %MAJOR_PYTHON_VERSION% == "2" (
SET WINDOWS_SDK_VERSION="v7.0"
) ELSE IF %MAJOR_PYTHON_VERSION% == "3" (
SET WINDOWS_SDK_VERSION="v7.1"
) ELSE (
ECHO Unsupported Python version: "%MAJOR_PYTHON_VERSION%"
EXIT 1
)
IF "%PYTHON_ARCH%"=="64" (
ECHO Configuring Windows SDK %WINDOWS_SDK_VERSION% for Python %MAJOR_PYTHON_VERSION% on a 64 bit architecture
SET DISTUTILS_USE_SDK=1
SET MSSdk=1
"%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Setup\WindowsSdkVer.exe" -q -version:%WINDOWS_SDK_VERSION%
"%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Bin\SetEnv.cmd" /x64 /release
ECHO Executing: %COMMAND_TO_RUN%
call %COMMAND_TO_RUN% || EXIT 1
) ELSE (
ECHO Using default MSVC build environment for 32 bit architecture
ECHO Executing: %COMMAND_TO_RUN%
call %COMMAND_TO_RUN% || EXIT 1
)