fplll / fpylll

A Python interface for https://github.com/fplll/fplll
GNU General Public License v2.0
118 stars 60 forks source link

fpylll

A Python wrapper for fplll <https://github.com/fplll/fplll>__.

.. image:: https://github.com/fplll/fpylll/workflows/Tests/badge.svg :target: https://github.com/fplll/fpylll/actions?query=workflow%3ATests .. image:: https://badge.fury.io/py/fpylll.svg :target: https://badge.fury.io/py/fpylll .. image:: https://readthedocs.org/projects/fpylll/badge/?version=latest :target: http://fpylll.readthedocs.io/en/latest/?badge=latest

.. code-block:: python

>>> from fpylll import *

>>> A = IntegerMatrix(50, 50)
>>> A.randomize("ntrulike", bits=50, q=127)
>>> A[0].norm()
3564748886669202.5

>>> M = GSO.Mat(A)
>>> M.update_gso()
>>> M.get_mu(1,0)
0.815748944429783

>>> L = LLL.Reduction(M)
>>> L()
>>> M.get_mu(1,0)
0.41812865497076024
>>> A[0].norm()
24.06241883103193

The basic BKZ algorithm can be implemented in about 60 pretty readable lines of Python code (cf. simple_bkz.py <https://github.com/fplll/fpylll/blob/master/src/fpylll/algorithms/simple_bkz.py>). For a quick tour of the library, you can check out the tutorial <https://github.com/fplll/fpylll/blob/master/docs/tutorial.rst>.

How to cite

.. code-block::

@unpublished{fpylll,
    author = {The {FPLLL} development team},
    title = {{fpylll}, a {Python} wrapper for the {fplll} lattice reduction library, {Version}: 0.6.1},
    year = 2023,
    note = {Available at \url{https://github.com/fplll/fpylll}},
    url = {https://github.com/fplll/fpylll}
}

Requirements

fpylll relies on the following C/C++ libraries:

fpylll also relies on

We also suggest

Online

fpylll ships with Sage. Thus, it is available via SageMathCell <https://sagecell.sagemath.org/?z=eJxtjk1rAjEQhu-C_2HwlC3LImKhlxxSaktRUeoW-kEJo5uVaD62kxS0v76zp730MrzzMPPwthQ9tN3VOQfWd5Ey3IxHCiQ8h2yOhtaYyV4qwtBEL-6mJUy-ka6TErzst7Oc89zbnDgU41FHNmShPqdfVYjkRcEsZUKWWZPY6yI2eiD6lGIQ98uP6mHxqF5Xtd7VL6pePL3zY4_JND-HbPlIldCDLRJ6sXfxcNbJ_ho54wKDUA6RO-JFuxi7JG9LaB0ek-wVa_WmV5vNdlf82_gPldJZ3g==&lang=sage&interacts=eJyLjgUAARUAuQ==> and CoCalc <https://cocalc.com/> (select a Jupyter notebook with a Sage kernel).

Getting Started

Note: fpylll is also available via PyPI <https://pypi.python.org/pypi/fpylll/> and Conda-Forge <https://conda-forge.github.io> for Conda <https://conda.io/docs/>__. In what follows, we explain manual installation.

We recommend virtualenv <https://virtualenv.readthedocs.org/> for isolating Python build environments and virtualenvwrapper <https://virtualenvwrapper.readthedocs.org/> to manage virtual environments. We indicate active virtualenvs by the prefix (fpylll).

Automatic install

  1. Run bootstrap.sh

    .. code-block:: bash

    $ ./bootstrap.sh $ source ./activate

Manual install

  1. Create a new virtualenv and activate it:

    .. code-block:: bash

    $ virtualenv env $ ln -s ./env/bin/activate ./ $ source ./activate

  2. Install the required libraries - GMP <https://gmplib.org> or MPIR <http://mpir.org> and MPFR <http://www.mpfr.org> - if not available already. You may also want to install QD <http://crd-legacy.lbl.gov/~dhbailey/mpdist/>.

  3. Install fplll:

    .. code-block:: bash

    $ (fpylll) ./install-dependencies.sh $VIRTUAL_ENV

    Some OSX users report that they required export CXXFLAGS="-stdlib=libc++ -mmacosx-version-min=10.7" and export CXX=clang++ (after installing a recent clang with brew <https://brew.sh>__) since the default GCC installed by Apple does not have full C++11 support.

  4. Then, execute:

    .. code-block:: bash

    $ (fpylll) pip install -r requirements.txt

    to install the required Python packages (see above).

  5. If you are so inclined, run:

    .. code-block:: bash

    $ (fpylll) pip install -r suggestions.txt

    to install suggested Python packages as well (optional).

  6. Build the Python extension:

    .. code-block:: bash

    $ (fpylll) export PKG_CONFIG_PATH="$VIRTUAL_ENV/lib/pkgconfig:$PKG_CONFIG_PATH" $ (fpylll) python setup.py build_ext $ (fpylll) python setup.py install

  7. To run fpylll, you will need to:

    .. code-block:: bash

    $ (fpylll) export LD_LIBRARY_PATH="$VIRTUAL_ENV/lib"

    so that Python can find fplll and friends.

    Note that you can also patch activate to set LD_LIBRRY_PATH. For this, add:

    .. code-block:: bash

    LD_LIBRARY_HACK

    _OLD_LD_LIBRARY_PATH="$LD_LIBRARY_PATH" LD_LIBRARY_PATH="$VIRTUAL_ENV/lib:$LD_LIBRARY_PATH" export LD_LIBRARY_PATH

    END_LD_LIBRARY_HACK

    PKG_CONFIG_HACK

    _OLD_PKG_CONFIG_PATH="$PKG_CONFIG_PATH" PKG_CONFIG_PATH="$VIRTUAL_ENV/lib/pkgconfig:$PKG_CONFIG_PATH" export PKG_CONFIG_PATH

    END_PKG_CONFIG_HACK

    towards the end and:

    .. code-block:: bash

    LD_LIBRARY_HACK

    if ! [ -z ${_OLD_LD_LIBRARY_PATH+x} ] ; then LD_LIBRARY_PATH="$_OLD_LD_LIBRARY_PATH" export LD_LIBRARY_PATH unset _OLD_LD_LIBRARY_PATH fi

    END_LD_LIBRARY_HACK

    PKG_CONFIG_HACK

    if ! [ -z ${_OLD_PKG_CONFIG_PATH+x} ] ; then PKG_CONFIG_PATH="$_OLD_PKG_CONFIG_PATH" export PKG_CONFIG_PATH unset _OLD_PKG_CONFIG_PATH fi

    END_PKG_CONFIG_HACK

    in the deactivate function in the activate script.

Running fpylll

  1. To (re)activate the virtual environment, simply run:

    .. code-block:: bash

    $ source ./activate

  2. Start Python:

    .. code-block:: bash

    $ (fpylll) ipython

Manual update of fpylll and fplll inside Sagemath 9.0+

The instructions are very similar to the manual ones above.

  1. Activate the sage-sh virtualenv:

    .. code-block:: bash

    $ sage -sh

  2. Install the required libraries - GMP <https://gmplib.org> or MPIR <http://mpir.org> and MPFR <http://www.mpfr.org> - if not available already. You may also want to install QD <http://crd-legacy.lbl.gov/~dhbailey/mpdist/>.

  3. Install fplll:

    .. code-block:: bash

    $ (sage-sh) ./install-dependencies.sh $SAGE_LOCAL

    Some OSX users report that they required export CXXFLAGS="-stdlib=libc++ -mmacosx-version-min=10.7" and export CXX=clang++ (after installing a recent clang with brew <https://brew.sh>__) since the default GCC installed by Apple does not have full C++11 support.

  4. Then, execute:

    .. code-block:: bash

    $ (sage-sh) pip3 install -r requirements.txt

    to install the required Python packages (see above).

  5. If you are so inclined, run:

    .. code-block:: bash

    $ (sage-sh) pip3 install -r suggestions.txt

    to install suggested Python packages as well (optional).

  6. Build the Python extension:

    .. code-block:: bash

    $ (sage-sh) export PKG_CONFIG_PATH="$SAGE_LOCAL/lib/pkgconfig:$PKG_CONFIG_PATH" $ (sage-sh) python3 setup.py build_ext $ (sage-sh) python3 setup.py install $ (sage-sh) exit

  7. Verify the upgrade went well:

    .. code-block:: bash

    $ sage sage: import fpylll sage: print(fpylll.version)

    The output should match the value of __version__ in src/fpylll/__init__.py <https://github.com/fplll/fpylll/blob/master/src/fpylll/__init__.py>__.

Multicore Support

fpylll supports parallelisation on multiple cores. For all C++ support to drop the GIL <https://wiki.python.org/moin/GlobalInterpreterLock> is enabled, allowing the use of threads to parallelise. Fplll is thread safe as long as each thread works on a separate object such as IntegerMatrix or MatGSO. Also, fpylll does not actually drop the GIL in all calls to C++ functions yet. In many scenarios using multiprocessing <https://docs.python.org/2/library/multiprocessing.html>, which sidesteps the GIL and thread safety issues by using processes instead of threads, will be the better choice.

The example below calls LLL.reduction on 128 matrices of dimension 30 on four worker processes.

.. code-block:: python

from fpylll import IntegerMatrix, LLL
from multiprocessing import Pool

d, workers, tasks = 30, 4, 128

def run_it(p, f, A, prefix=""):
    """Print status during parallel execution."""
    import sys
    r = []
    for i, retval in enumerate(p.imap_unordered(f, A, 1)):
        r.append(retval)
        sys.stderr.write('\r{0} done: {1:.2%}'.format(prefix, float(i)/len(A)))
        sys.stderr.flush()
    sys.stderr.write('\r{0} done {1:.2%}\n'.format(prefix, float(i+1)/len(A)))
    return r

A = [IntegerMatrix.random(d, "uniform", bits=30) for _ in range(tasks)]
A = run_it(Pool(workers), LLL.reduction, A)

To test threading simply replace the line from multiprocessing import Pool with from multiprocessing.pool import ThreadPool as Pool. For calling BKZ.reduction this way, which expects a second parameter with options, using functools.partial <https://docs.python.org/2/library/functools.html#functools.partial>_ is a good choice.

Contributing

fpylll welcomes contributions, cf. the list of open issues <https://github.com/fplll/fpylll/issues>_. To contribute, clone this repository, commit your code on a separate branch and send a pull request. Please write tests for your code. You can run them by calling::

$ (fpylll) PY_IGNORE_IMPORTMISMATCH=1 py.test

from the top-level directory which runs all tests in tests/test_*.py. We run flake8 <https://flake8.readthedocs.org/en/latest/>_ on every commit automatically, In particular, we run::

$ (fpylll) flake8 --max-line-length=120 --max-complexity=16 --ignore=E22,E241 src

Note that fpylll supports Python 3. In particular, tests are run using Python 3.10, 3.11 and 3.12. See .tests.yml <https://github.com/fplll/fpylll/blob/master/.github/workflows/tests.yml>_ for details on automated testing.

Attribution & License

fpylll is maintained by Martin Albrecht.

The following people have contributed to fpylll

We copied a decent bit of code over from Sage, mostly from it's fpLLL interface.

fpylll is licensed under the GPLv2+.

This project was supported through the European Union PROMETHEUS project (Horizon 2020 Research and Innovation Program, grant 780701), EPSRC grant EP/P009417/1 and EPSRC grant EP/S020330/1.