diffcp


Namediffcp JSON
Version 1.0.22 PyPI version JSON
download
home_pagehttp://github.com/cvxgrp/diffcp/
Summary
upload_time2023-03-23 17:23:58
maintainer
docs_urlNone
authorAkshay Agrawal, Shane Barratt, Stephen Boyd, Enzo Busseti, Walaa Moursi
requires_python
licenseApache License, Version 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Build Status](http://github.com/cvxgrp/diffcp/workflows/build/badge.svg?event=push)](https://github.com/cvxgrp/diffcp/actions/workflows/build.yml)

# diffcp

`diffcp` is a Python package for computing the derivative of a convex cone program, with respect to its problem data. The derivative is implemented as an abstract linear map, with methods for its forward application and its adjoint. 

The implementation is based on the calculations in our paper [Differentiating through a cone program](http://web.stanford.edu/~boyd/papers/diff_cone_prog.html).

### Installation
`diffcp` is available on PyPI, as a source distribution. Install it with

```bash
pip install diffcp
```

You will need a C++11-capable compiler to build `diffcp`.

`diffcp` requires:
* [NumPy](https://github.com/numpy/numpy) >= 1.15
* [SciPy](https://github.com/scipy/scipy) >= 1.10
* [SCS](https://github.com/bodono/scs-python) >= 2.0.2
* [pybind11](https://github.com/pybind/pybind11/tree/stable) >= 2.4
* [threadpoolctl](https://github.com/joblib/threadpoolctl) >= 1.1
* [ECOS](https://github.com/embotech/ecos-python) >= 2.0.10
* Python >= 3.7

`diffcp` uses Eigen; Eigen operations can be automatically vectorized by compilers. To enable vectorization, install with

```bash
MARCH_NATIVE=1 pip install diffcp
```

OpenMP can be enabled by passing extra arguments to your compiler. For example, on linux, you can tell gcc to activate the OpenMP extension by specifying the flag "-fopenmp":

```bash
OPENMP_FLAG="-fopenmp" pip install diffcp
```

To enable both vectorization and OpenMP (on linux), use

```bash
MARCH_NATIVE=1 OPENMP_FLAG="-fopenmp" pip install diffcp
```

### Cone programs
`diffcp` differentiates through a primal-dual cone program pair. The primal problem must be expressed as 

```
minimize        c'x
subject to      Ax + s = b
                s in K
```
where  `x` and `s` are variables, `A`, `b` and `c` are the user-supplied problem data, and `K` is a user-defined convex cone. The corresponding dual problem is

```
minimize        b'y
subject to      A'y + c == 0
                y in K^*
```

with dual variable `y`.

### Usage

`diffcp` exposes the function

```python
solve_and_derivative(A, b, c, cone_dict, warm_start=None, solver=None, **kwargs).
```

This function returns a primal-dual solution `x`, `y`, and `s`, along with
functions for evaluating the derivative and its adjoint (transpose).
These functions respectively compute right and left multiplication of the derivative
of the solution map at `A`, `b`, and `c` by a vector.
The `solver` argument determines which solver to use; the available solvers
are `solver="SCS"` and `solver="ECOS"`.
If no solver is specified, `diffcp` will choose the solver itself.
In the case that the problem is not solved, i.e. the solver fails for some reason, we will raise
a `SolverError` Exception.

#### Arguments
The arguments `A`, `b`, and `c` correspond to the problem data of a cone program.
* `A` must be a [SciPy sparse CSC matrix](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.csc_matrix.html).
* `b` and `c` must be NumPy arrays.
* `cone_dict` is a dictionary that defines the convex cone `K`.
* `warm_start` is an optional tuple `(x, y, s)` at which to warm-start. (Note: this is only available for the SCS solver).
* `**kwargs` are keyword arguments to forward to the solver (e.g., `verbose=False`).

These inputs must conform to the [SCS convention](https://github.com/bodono/scs-python) for problem data. The keys in `cone_dict` correspond to the cones, with
* `diffcp.ZERO` for the zero cone,
* `diffcp.POS` for the positive orthant,
* `diffcp.SOC` for a product of SOC cones,
* `diffcp.PSD` for a product of PSD cones, and
* `diffcp.EXP` for a product of exponential cones.

The values in `cone_dict` denote the sizes of each cone; the values of `diffcp.SOC`, `diffcp.PSD`, and `diffcp.EXP` should be lists. The order of the rows of `A` must match the ordering of the cones given above. For more details, consult the [SCS documentation](https://github.com/cvxgrp/scs/blob/master/README.md).

#### Return value
The function `solve_and_derivative` returns a tuple

```python
(x, y, s, derivative, adjoint_derivative)
```

* `x`, `y`, and `s` are a primal-dual solution.

* `derivative` is a function that applies the derivative at `(A, b, c)` to perturbations `dA`, `db`, `dc`. It has the signature 
```derivative(dA, db, dc) -> dx, dy, ds```, where `dA` is a SciPy sparse CSC matrix with the same sparsity pattern as `A`, and `db` and `dc` are NumPy arrays. `dx`, `dy`, and `ds` are NumPy arrays, approximating the change in the primal-dual solution due to the perturbation.

* `adjoint_derivative` is a function that applies the adjoint of the derivative to perturbations `dx`, `dy`, `ds`. It has the signature 
```adjoint_derivative(dx, dy, ds) -> dA, db, dc```, where `dx`, `dy`, and `ds` are NumPy arrays.

#### Example
```python
import numpy as np
from scipy import sparse

import diffcp

cone_dict = {
    diffcp.ZERO: 3,
    diffcp.POS: 3,
    diffcp.SOC: [5]
}

m = 3 + 3 + 5
n = 5

A, b, c = diffcp.utils.random_cone_prog(m, n, cone_dict)
x, y, s, D, DT = diffcp.solve_and_derivative(A, b, c, cone_dict)

# evaluate the derivative
nonzeros = A.nonzero()
data = 1e-4 * np.random.randn(A.size)
dA = sparse.csc_matrix((data, nonzeros), shape=A.shape)
db = 1e-4 * np.random.randn(m)
dc = 1e-4 * np.random.randn(n)
dx, dy, ds = D(dA, db, dc)

# evaluate the adjoint of the derivative
dx = c
dy = np.zeros(m)
ds = np.zeros(m)
dA, db, dc = DT(dx, dy, ds)
```

For more examples, including the SDP example described in the paper, see the [`examples`](examples/) directory.

### Citing
If you wish to cite `diffcp`, please use the following BibTex:

```
@article{diffcp2019,
    author       = {Agrawal, A. and Barratt, S. and Boyd, S. and Busseti, E. and Moursi, W.},
    title        = {Differentiating through a Cone Program},
    journal      = {Journal of Applied and Numerical Optimization},
    year         = {2019},
    volume       = {1},
    number       = {2},
    pages        = {107--115},
}

@misc{diffcp,
    author       = {Agrawal, A. and Barratt, S. and Boyd, S. and Busseti, E. and Moursi, W.},
    title        = {{diffcp}: differentiating through a cone program, version 1.0},
    howpublished = {\url{https://github.com/cvxgrp/diffcp}},
    year         = 2019
}
```

The following thesis concurrently derived the mathematics behind differentiating cone programs.
```
@phdthesis{amos2019differentiable,
  author       = {Brandon Amos},
  title        = {{Differentiable Optimization-Based Modeling for Machine Learning}},
  school       = {Carnegie Mellon University},
  year         = 2019,
  month        = May,
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/cvxgrp/diffcp/",
    "name": "diffcp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Akshay Agrawal, Shane Barratt, Stephen Boyd, Enzo Busseti, Walaa Moursi",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/e1/46/6cde34a8c011fc669e785e49894b7f31850ae3c96b7f416bc3e630092f54/diffcp-1.0.22.tar.gz",
    "platform": null,
    "description": "[![Build Status](http://github.com/cvxgrp/diffcp/workflows/build/badge.svg?event=push)](https://github.com/cvxgrp/diffcp/actions/workflows/build.yml)\n\n# diffcp\n\n`diffcp` is a Python package for computing the derivative of a convex cone program, with respect to its problem data. The derivative is implemented as an abstract linear map, with methods for its forward application and its adjoint. \n\nThe implementation is based on the calculations in our paper [Differentiating through a cone program](http://web.stanford.edu/~boyd/papers/diff_cone_prog.html).\n\n### Installation\n`diffcp` is available on PyPI, as a source distribution. Install it with\n\n```bash\npip install diffcp\n```\n\nYou will need a C++11-capable compiler to build `diffcp`.\n\n`diffcp` requires:\n* [NumPy](https://github.com/numpy/numpy) >= 1.15\n* [SciPy](https://github.com/scipy/scipy) >= 1.10\n* [SCS](https://github.com/bodono/scs-python) >= 2.0.2\n* [pybind11](https://github.com/pybind/pybind11/tree/stable) >= 2.4\n* [threadpoolctl](https://github.com/joblib/threadpoolctl) >= 1.1\n* [ECOS](https://github.com/embotech/ecos-python) >= 2.0.10\n* Python >= 3.7\n\n`diffcp` uses Eigen; Eigen operations can be automatically vectorized by compilers. To enable vectorization, install with\n\n```bash\nMARCH_NATIVE=1 pip install diffcp\n```\n\nOpenMP can be enabled by passing extra arguments to your compiler. For example, on linux, you can tell gcc to activate the OpenMP extension by specifying the flag \"-fopenmp\":\n\n```bash\nOPENMP_FLAG=\"-fopenmp\" pip install diffcp\n```\n\nTo enable both vectorization and OpenMP (on linux), use\n\n```bash\nMARCH_NATIVE=1 OPENMP_FLAG=\"-fopenmp\" pip install diffcp\n```\n\n### Cone programs\n`diffcp` differentiates through a primal-dual cone program pair. The primal problem must be expressed as \n\n```\nminimize        c'x\nsubject to      Ax + s = b\n                s in K\n```\nwhere  `x` and `s` are variables, `A`, `b` and `c` are the user-supplied problem data, and `K` is a user-defined convex cone. The corresponding dual problem is\n\n```\nminimize        b'y\nsubject to      A'y + c == 0\n                y in K^*\n```\n\nwith dual variable `y`.\n\n### Usage\n\n`diffcp` exposes the function\n\n```python\nsolve_and_derivative(A, b, c, cone_dict, warm_start=None, solver=None, **kwargs).\n```\n\nThis function returns a primal-dual solution `x`, `y`, and `s`, along with\nfunctions for evaluating the derivative and its adjoint (transpose).\nThese functions respectively compute right and left multiplication of the derivative\nof the solution map at `A`, `b`, and `c` by a vector.\nThe `solver` argument determines which solver to use; the available solvers\nare `solver=\"SCS\"` and `solver=\"ECOS\"`.\nIf no solver is specified, `diffcp` will choose the solver itself.\nIn the case that the problem is not solved, i.e. the solver fails for some reason, we will raise\na `SolverError` Exception.\n\n#### Arguments\nThe arguments `A`, `b`, and `c` correspond to the problem data of a cone program.\n* `A` must be a [SciPy sparse CSC matrix](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.csc_matrix.html).\n* `b` and `c` must be NumPy arrays.\n* `cone_dict` is a dictionary that defines the convex cone `K`.\n* `warm_start` is an optional tuple `(x, y, s)` at which to warm-start. (Note: this is only available for the SCS solver).\n* `**kwargs` are keyword arguments to forward to the solver (e.g., `verbose=False`).\n\nThese inputs must conform to the [SCS convention](https://github.com/bodono/scs-python) for problem data. The keys in `cone_dict` correspond to the cones, with\n* `diffcp.ZERO` for the zero cone,\n* `diffcp.POS` for the positive orthant,\n* `diffcp.SOC` for a product of SOC cones,\n* `diffcp.PSD` for a product of PSD cones, and\n* `diffcp.EXP` for a product of exponential cones.\n\nThe values in `cone_dict` denote the sizes of each cone; the values of `diffcp.SOC`, `diffcp.PSD`, and `diffcp.EXP` should be lists. The order of the rows of `A` must match the ordering of the cones given above. For more details, consult the [SCS documentation](https://github.com/cvxgrp/scs/blob/master/README.md).\n\n#### Return value\nThe function `solve_and_derivative` returns a tuple\n\n```python\n(x, y, s, derivative, adjoint_derivative)\n```\n\n* `x`, `y`, and `s` are a primal-dual solution.\n\n* `derivative` is a function that applies the derivative at `(A, b, c)` to perturbations `dA`, `db`, `dc`. It has the signature \n```derivative(dA, db, dc) -> dx, dy, ds```, where `dA` is a SciPy sparse CSC matrix with the same sparsity pattern as `A`, and `db` and `dc` are NumPy arrays. `dx`, `dy`, and `ds` are NumPy arrays, approximating the change in the primal-dual solution due to the perturbation.\n\n* `adjoint_derivative` is a function that applies the adjoint of the derivative to perturbations `dx`, `dy`, `ds`. It has the signature \n```adjoint_derivative(dx, dy, ds) -> dA, db, dc```, where `dx`, `dy`, and `ds` are NumPy arrays.\n\n#### Example\n```python\nimport numpy as np\nfrom scipy import sparse\n\nimport diffcp\n\ncone_dict = {\n    diffcp.ZERO: 3,\n    diffcp.POS: 3,\n    diffcp.SOC: [5]\n}\n\nm = 3 + 3 + 5\nn = 5\n\nA, b, c = diffcp.utils.random_cone_prog(m, n, cone_dict)\nx, y, s, D, DT = diffcp.solve_and_derivative(A, b, c, cone_dict)\n\n# evaluate the derivative\nnonzeros = A.nonzero()\ndata = 1e-4 * np.random.randn(A.size)\ndA = sparse.csc_matrix((data, nonzeros), shape=A.shape)\ndb = 1e-4 * np.random.randn(m)\ndc = 1e-4 * np.random.randn(n)\ndx, dy, ds = D(dA, db, dc)\n\n# evaluate the adjoint of the derivative\ndx = c\ndy = np.zeros(m)\nds = np.zeros(m)\ndA, db, dc = DT(dx, dy, ds)\n```\n\nFor more examples, including the SDP example described in the paper, see the [`examples`](examples/) directory.\n\n### Citing\nIf you wish to cite `diffcp`, please use the following BibTex:\n\n```\n@article{diffcp2019,\n    author       = {Agrawal, A. and Barratt, S. and Boyd, S. and Busseti, E. and Moursi, W.},\n    title        = {Differentiating through a Cone Program},\n    journal      = {Journal of Applied and Numerical Optimization},\n    year         = {2019},\n    volume       = {1},\n    number       = {2},\n    pages        = {107--115},\n}\n\n@misc{diffcp,\n    author       = {Agrawal, A. and Barratt, S. and Boyd, S. and Busseti, E. and Moursi, W.},\n    title        = {{diffcp}: differentiating through a cone program, version 1.0},\n    howpublished = {\\url{https://github.com/cvxgrp/diffcp}},\n    year         = 2019\n}\n```\n\nThe following thesis concurrently derived the mathematics behind differentiating cone programs.\n```\n@phdthesis{amos2019differentiable,\n  author       = {Brandon Amos},\n  title        = {{Differentiable Optimization-Based Modeling for Machine Learning}},\n  school       = {Carnegie Mellon University},\n  year         = 2019,\n  month        = May,\n}\n```\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "",
    "version": "1.0.22",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ee68b0ce95fa66cb9ebd34d3c4ee4257fa6a42bfe2e699f4456a346f3232b35",
                "md5": "933f6ac9e71f0fdf0619fed763e1886a",
                "sha256": "255ef2e8ea5799204d7ea38a59a1c18744bcd3ae3b3fca38567307ba9ad4266f"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "933f6ac9e71f0fdf0619fed763e1886a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 270580,
            "upload_time": "2023-03-23T17:10:35",
            "upload_time_iso_8601": "2023-03-23T17:10:35.562556Z",
            "url": "https://files.pythonhosted.org/packages/3e/e6/8b0ce95fa66cb9ebd34d3c4ee4257fa6a42bfe2e699f4456a346f3232b35/diffcp-1.0.22-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57d9f835b3d25dcf957b395445e4fde8896bb7f5a6e5fb7057cf0097a05d7f45",
                "md5": "7fd7e41e61e97018e050ce985aca2f86",
                "sha256": "ab4cc7c64c08d2ba68e9405d23d9b3a9f67e4e42734547bef903d00371fa2f4c"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7fd7e41e61e97018e050ce985aca2f86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5187626,
            "upload_time": "2023-03-23T17:09:26",
            "upload_time_iso_8601": "2023-03-23T17:09:26.378119Z",
            "url": "https://files.pythonhosted.org/packages/57/d9/f835b3d25dcf957b395445e4fde8896bb7f5a6e5fb7057cf0097a05d7f45/diffcp-1.0.22-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04acdc861a957bc31a4a330f19ad25f2fb81675d03c7dbcd98db413d87f54e38",
                "md5": "f83a496a9292a19739a8492649fe7994",
                "sha256": "8582ed5b97a189d5143f44fb3bb3c40b3fed52b37b43a6b1c0348e8edb3c42cd"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f83a496a9292a19739a8492649fe7994",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 184264,
            "upload_time": "2023-03-23T17:11:53",
            "upload_time_iso_8601": "2023-03-23T17:11:53.586448Z",
            "url": "https://files.pythonhosted.org/packages/04/ac/dc861a957bc31a4a330f19ad25f2fb81675d03c7dbcd98db413d87f54e38/diffcp-1.0.22-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21595a29d1aaa3ceef525f9923d4d37a025bec6c667f0435dd252bb3c71b4885",
                "md5": "eb498e4ef8441c1a3f1706dddfed9cfb",
                "sha256": "a14ab47e92f71791c310d82a10946d5717417ed5561c5f62902b42b9db1e3d74"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb498e4ef8441c1a3f1706dddfed9cfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 270630,
            "upload_time": "2023-03-23T17:09:47",
            "upload_time_iso_8601": "2023-03-23T17:09:47.442649Z",
            "url": "https://files.pythonhosted.org/packages/21/59/5a29d1aaa3ceef525f9923d4d37a025bec6c667f0435dd252bb3c71b4885/diffcp-1.0.22-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b59927376a6485ce9e56df01898783f83a0f9de60f15bf8e651606ce0f0a8aa",
                "md5": "a9b43a85cdc8bb676c06fb56f675074e",
                "sha256": "861b7267326ddf8c342d25f1ec7c1159c2f1c5de97720a79872901daa02f567b"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9b43a85cdc8bb676c06fb56f675074e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5194688,
            "upload_time": "2023-03-23T17:10:15",
            "upload_time_iso_8601": "2023-03-23T17:10:15.303592Z",
            "url": "https://files.pythonhosted.org/packages/3b/59/927376a6485ce9e56df01898783f83a0f9de60f15bf8e651606ce0f0a8aa/diffcp-1.0.22-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66675e7da9d2aedff0db50725550cd225b75b796567f8c4089a08dff042b9d7a",
                "md5": "4e956e28dcb5f2733df4a28ea1cfabe2",
                "sha256": "3779e154f0140fe84eceb73f9d8fba03c990639bd18a9d2e377f557aab9842ad"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e956e28dcb5f2733df4a28ea1cfabe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 184262,
            "upload_time": "2023-03-23T17:12:46",
            "upload_time_iso_8601": "2023-03-23T17:12:46.020362Z",
            "url": "https://files.pythonhosted.org/packages/66/67/5e7da9d2aedff0db50725550cd225b75b796567f8c4089a08dff042b9d7a/diffcp-1.0.22-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf9b028b542a41e30568c406785eb90ce7d221be5b520f5dc408f31f9d3dbbbd",
                "md5": "5090c6305dc65f807021de4757d3727c",
                "sha256": "68e442e8602049bf38c80beb8b82672d4fe304b11bd38275b124e3f0f56917ea"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5090c6305dc65f807021de4757d3727c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 268133,
            "upload_time": "2023-03-23T17:10:30",
            "upload_time_iso_8601": "2023-03-23T17:10:30.196687Z",
            "url": "https://files.pythonhosted.org/packages/bf/9b/028b542a41e30568c406785eb90ce7d221be5b520f5dc408f31f9d3dbbbd/diffcp-1.0.22-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23f2e0008117f50c69c801fd50af31e88bae2be149d1011904e19809ac27e44a",
                "md5": "7a0d2264da68d813de54e8b2f3cb8086",
                "sha256": "213de79beb61639140349f783d32827498600ce2b44f302fa6e7ed50a49180f4"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a0d2264da68d813de54e8b2f3cb8086",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5240838,
            "upload_time": "2023-03-23T17:09:34",
            "upload_time_iso_8601": "2023-03-23T17:09:34.040184Z",
            "url": "https://files.pythonhosted.org/packages/23/f2/e0008117f50c69c801fd50af31e88bae2be149d1011904e19809ac27e44a/diffcp-1.0.22-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af39a2e02a716d3f3400e3aec959ac234a929fbe1d233c5ab02b4ef974704a66",
                "md5": "996e3a7ee4b821425b8de7ac57a4df77",
                "sha256": "f2d34910579f4c9bc055370bf925b8b09df0dc08897f8fbde0a4cfbd7cccec1d"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "996e3a7ee4b821425b8de7ac57a4df77",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 184129,
            "upload_time": "2023-03-23T17:12:36",
            "upload_time_iso_8601": "2023-03-23T17:12:36.702387Z",
            "url": "https://files.pythonhosted.org/packages/af/39/a2e02a716d3f3400e3aec959ac234a929fbe1d233c5ab02b4ef974704a66/diffcp-1.0.22-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bdf8f20cb96352c80156f0644b5d98e0b15793c5a44c4cad583ff3fcd987805",
                "md5": "019daf8d9a938b1d442c39bd7995ab94",
                "sha256": "545edc9be97dcc09419ee00563e8deb4ba3f5a484c0f21809d398ef42acf87d6"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "019daf8d9a938b1d442c39bd7995ab94",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 270502,
            "upload_time": "2023-03-23T17:23:55",
            "upload_time_iso_8601": "2023-03-23T17:23:55.478749Z",
            "url": "https://files.pythonhosted.org/packages/5b/df/8f20cb96352c80156f0644b5d98e0b15793c5a44c4cad583ff3fcd987805/diffcp-1.0.22-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ea101ff451534e28d8c7839c6eca08c356217579e0f612fa6ae3ec8544da959",
                "md5": "b4f87a218575216bc6f3269226d15de7",
                "sha256": "fba6c892710cc5b032853b8ef02c62c2a7059daed458080a613591d1865382fd"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4f87a218575216bc6f3269226d15de7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5188564,
            "upload_time": "2023-03-23T17:09:31",
            "upload_time_iso_8601": "2023-03-23T17:09:31.427884Z",
            "url": "https://files.pythonhosted.org/packages/7e/a1/01ff451534e28d8c7839c6eca08c356217579e0f612fa6ae3ec8544da959/diffcp-1.0.22-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adae0cd316f8968bf6d9e6cb6200931496cd4ed07ca02303cbf01acc132dc6b6",
                "md5": "274ef27ab2bb5934b624426a3c63132d",
                "sha256": "ff674fdddcdb3bc28dd1dce12a4cae47627aec327d1c86fce5779c05f00da8dc"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "274ef27ab2bb5934b624426a3c63132d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 184020,
            "upload_time": "2023-03-23T17:11:42",
            "upload_time_iso_8601": "2023-03-23T17:11:42.911949Z",
            "url": "https://files.pythonhosted.org/packages/ad/ae/0cd316f8968bf6d9e6cb6200931496cd4ed07ca02303cbf01acc132dc6b6/diffcp-1.0.22-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5751717a3d77bde9743818ccf780568b414af8f7e86911db3d11d3b32accbf4",
                "md5": "6e62ccf174ba970de83b0d3c60f04761",
                "sha256": "b1f3159ff34e74aa32ddb4f5efc96662b511a418e9fde020f06baa92b39ba933"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e62ccf174ba970de83b0d3c60f04761",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 270796,
            "upload_time": "2023-03-23T17:32:34",
            "upload_time_iso_8601": "2023-03-23T17:32:34.687482Z",
            "url": "https://files.pythonhosted.org/packages/f5/75/1717a3d77bde9743818ccf780568b414af8f7e86911db3d11d3b32accbf4/diffcp-1.0.22-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf00d5c643c463633ff4c90046e3ab23f84a08d3116f16a4f9b6ea18eadbe014",
                "md5": "b8478cac263df28c32846e3596391a70",
                "sha256": "084ddbd68887f495112c9587e77303c9f9817c5eb7780ee0ecd486719a428ca4"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8478cac263df28c32846e3596391a70",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5186162,
            "upload_time": "2023-03-23T17:09:49",
            "upload_time_iso_8601": "2023-03-23T17:09:49.005657Z",
            "url": "https://files.pythonhosted.org/packages/cf/00/d5c643c463633ff4c90046e3ab23f84a08d3116f16a4f9b6ea18eadbe014/diffcp-1.0.22-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57292a0035b27e824bab2fea13b9263a88d629cc6aea2dde286bc0048b36f74e",
                "md5": "bc3d4597f7c343e4c5014deef88551df",
                "sha256": "f9644fc6659b95fb12593aca392b8539e139d6c676702e7c53127bd1fe4a8672"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bc3d4597f7c343e4c5014deef88551df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 182001,
            "upload_time": "2023-03-23T17:11:55",
            "upload_time_iso_8601": "2023-03-23T17:11:55.670355Z",
            "url": "https://files.pythonhosted.org/packages/57/29/2a0035b27e824bab2fea13b9263a88d629cc6aea2dde286bc0048b36f74e/diffcp-1.0.22-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1466cde34a8c011fc669e785e49894b7f31850ae3c96b7f416bc3e630092f54",
                "md5": "1509ac3393b55155b65dd62fa5fd449f",
                "sha256": "25ba8514777f42c7b581b4c5f9ba9dcd4a34bb92ffd4ed1ceb9ac3d0202863f0"
            },
            "downloads": -1,
            "filename": "diffcp-1.0.22.tar.gz",
            "has_sig": false,
            "md5_digest": "1509ac3393b55155b65dd62fa5fd449f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2198333,
            "upload_time": "2023-03-23T17:23:58",
            "upload_time_iso_8601": "2023-03-23T17:23:58.105587Z",
            "url": "https://files.pythonhosted.org/packages/e1/46/6cde34a8c011fc669e785e49894b7f31850ae3c96b7f416bc3e630092f54/diffcp-1.0.22.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-23 17:23:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "cvxgrp",
    "github_project": "diffcp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "diffcp"
}
        
Elapsed time: 0.04814s