{ "info": { "author": "Intel Corporation", "author_email": "intelnervana@intel.com", "bugtrack_url": null, "classifiers": [], "description": "## nGraph Compiler stack\n\n[nGraph][ngraph_github] is an open-source graph compiler for Artificial \nNeural Networks (ANNs). The nGraph Compiler stack provides an inherently \nefficient graph-based compilation infrastructure designed to be compatible \nwith the many upcoming processors, like the Intel Nervana™ Neural Network \nProcessor (Intel® Nervana™ NNP), while also unlocking a massive performance \nboost on any existing hardware targets in your neural network: both GPUs \nand CPUs. Using its flexible infrastructure, you will find it becomes \nmuch easier to create Deep Learning (DL) models that can adhere to the \n\"write once, run anywhere\" mantra that enables your AI solutions to easily\ngo from concept to production to scale.\n\nFrameworks using nGraph to execute workloads have shown [up to 45X] performance \nboost compared to native implementations.\n\n### Using the Python API \n\nnGraph can be used directly with the [Python API][api_python] described here, or \nwith the [C++ API][api_cpp] described in the [core documentation]. Alternatively, \nits performance benefits can be realized through frontends such as \n[TensorFlow][frontend_tf], [PaddlePaddle][paddle_paddle] and [ONNX][frontend_onnx].\nYou can also create your own custom framework to integrate directly with the \n[nGraph Ops] for highly-targeted graph execution.\n\n## Installation\n\nnGraph is available as binary wheels you can install from PyPI. nGraph binary \nwheels are currently tested on Ubuntu 16.04. To build and test on other \nsystems, you may want to try [building][ngraph_building] from sources.\n\nInstalling nGraph Python API from PyPI is easy:\n\n pip install ngraph-core\n\n## Usage example\n\nUsing nGraph's Python API to construct a computation graph and execute a \ncomputation is simple. The following example shows how to create a minimal \n`(A + B) * C` computation graph and calculate a result using 3 numpy arrays \nas input.\n\n\n```python\nimport numpy as np\nimport ngraph as ng\n\nA = ng.parameter(shape=[2, 2], name='A', dtype=np.float32)\nB = ng.parameter(shape=[2, 2], name='B', dtype=np.float32)\nC = ng.parameter(shape=[2, 2], name='C', dtype=np.float32)\n# >>> print(A)\n# \n\nmodel = (A + B) * C\n# >>> print(model)\n# \n\nruntime = ng.runtime(backend_name='CPU')\n# >>> print(runtime)\n# \n\ncomputation = runtime.computation(model, A, B, C)\n# >>> print(computation)\n# \n\nvalue_a = np.array([[1, 2], [3, 4]], dtype=np.float32)\nvalue_b = np.array([[5, 6], [7, 8]], dtype=np.float32)\nvalue_c = np.array([[9, 10], [11, 12]], dtype=np.float32)\n\nresult = computation(value_a, value_b, value_c)\n# >>> print(result)\n# [[ 54. 80.]\n# [110. 144.]]\n\nprint('Result = ', result)\n```\n\n[up to 45X]: https://ai.intel.com/ngraph-compiler-stack-beta-release/\n[frontend_onnx]: https://pypi.org/project/ngraph-onnx/\n[paddle_paddle]: https://ngraph.nervanasys.com/docs/latest/frameworks/paddle_integ.html \n[frontend_tf]: https://pypi.org/project/ngraph-tensorflow-bridge/\n[ngraph_github]: https://github.com/NervanaSystems/ngraph \"nGraph on GitHub\"\n[ngraph_building]: https://github.com/NervanaSystems/ngraph/blob/master/python/BUILDING.md \"Building nGraph\"\n[api_python]: https://ngraph.nervanasys.com/docs/latest/python_api/ \"nGraph's Python API documentation\"\n[api_cpp]: https://ngraph.nervanasys.com/docs/latest/backend-support/cpp-api.html\n[core documentation]: https://ngraph.nervanasys.com/docs/latest/core/overview.html\n[nGraph Ops]: http://ngraph.nervanasys.com/docs/latest/ops/index.html\n\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/NervanaSystems/ngraph/", "keywords": "", "license": "License :: OSI Approved :: Apache Software License", "maintainer": "", "maintainer_email": "", "name": "ngraph-core", "package_url": "https://pypi.org/project/ngraph-core/", "platform": "", "project_url": "https://pypi.org/project/ngraph-core/", "project_urls": { "Homepage": "https://github.com/NervanaSystems/ngraph/" }, "release_url": "https://pypi.org/project/ngraph-core/0.25.0/", "requires_dist": [ "six", "typing", "numpy ; python_version != \"2.7\" and python_version != \"3.4\"", "numpy (==1.16.4) ; python_version == \"2.7\"", "numpy (==1.15.4) ; python_version == \"3.4\"", "plaidml (>=0.6.3) ; extra == 'plaidml'" ], "requires_python": "", "summary": "nGraph - Intel's graph compiler and runtime for Neural Networks", "version": "0.25.0" }, "last_serial": 5678282, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "7844aef4bceb2aefd5b63570762cceb9", "sha256": "52486062ca40262c0e16168a6c9491663640b863d55d69f96d77c2bd89ffe837" }, "downloads": -1, "filename": "ngraph_core-0.10.0rc6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7844aef4bceb2aefd5b63570762cceb9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 50892281, "upload_time": "2018-11-30T05:52:05", "url": "https://files.pythonhosted.org/packages/2f/ac/05b599309f3ec4d4d0d409151cbbaaf0e38e43eca7181a7b3e2cdc9876bc/ngraph_core-0.10.0rc6-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "029dbda4d3080e9ad73de3c73c6a47bd", "sha256": "77f79768e65faa3fdcec12abcf666809a63c0ac9220d3ae12782b25514aadefb" }, "downloads": -1, "filename": "ngraph_core-0.10.0rc6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "029dbda4d3080e9ad73de3c73c6a47bd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 50964539, "upload_time": "2018-11-30T05:53:23", "url": "https://files.pythonhosted.org/packages/b8/81/95587f456a0bb33111c04b18334f8cbb249839ff1b9228657791d0d6b483/ngraph_core-0.10.0rc6-cp35-cp35m-manylinux1_x86_64.whl" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "7933063cf53604514a9568ed4519afea", "sha256": "24894f21ab3e4bf9f1976333d4ec7bb43810ad5a76b08fae4caf9b5678f79397" }, "downloads": -1, "filename": "ngraph_core-0.10.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7933063cf53604514a9568ed4519afea", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 50774390, "upload_time": "2018-12-01T00:20:22", "url": "https://files.pythonhosted.org/packages/a6/a4/360100796bbbdbeb6442cb8e627a88b966f072e10c7aafa8f54650375688/ngraph_core-0.10.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c4758c33dfc69c705236916e869cdf9b", "sha256": "2460023ab03d320170f61c853da91f609044da171f10d03db759d90120149254" }, "downloads": -1, "filename": "ngraph_core-0.10.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c4758c33dfc69c705236916e869cdf9b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 50846649, "upload_time": "2018-12-01T00:19:22", "url": "https://files.pythonhosted.org/packages/d7/8f/5627ec323d9a1c67c524674070b03b13551ff0b33808f9032d8e382610fe/ngraph_core-0.10.1-cp35-cp35m-manylinux1_x86_64.whl" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "0bca27b7cdb2613aa62a30d3aa192744", "sha256": "deb4a50e08501ceb53c4c99edf04a79f0e740d3351c59de82e9026a77eded4f5" }, "downloads": -1, "filename": "ngraph_core-0.15.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0bca27b7cdb2613aa62a30d3aa192744", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 79970445, "upload_time": "2019-03-08T03:52:02", "url": "https://files.pythonhosted.org/packages/9c/f8/e75782124dfcc5a7bb5c7c3dbc4e880886bef50360f3a73de75cf8cf31df/ngraph_core-0.15.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4f71251217b56d3ddc0392797efb9044", "sha256": "2721b3801bdf7efa85f5b63bcb7ce72a3f7ba8c7311e26f5e69b9158877aaa9f" }, "downloads": -1, "filename": "ngraph_core-0.15.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f71251217b56d3ddc0392797efb9044", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 80021796, "upload_time": "2019-03-08T03:52:28", "url": "https://files.pythonhosted.org/packages/35/d6/d5c935acd316376bfd4ab54acda3bfe2dcd1db17acd3917d9d3e93ca5586/ngraph_core-0.15.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aa36bd6d347d31325a97007b1c39cc75", "sha256": "8670f13c5d5762decc21e751a6f8b9d72191ea7c194ca71499f19164367fa0d9" }, "downloads": -1, "filename": "ngraph_core-0.15.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aa36bd6d347d31325a97007b1c39cc75", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 80029408, "upload_time": "2019-03-08T03:52:55", "url": "https://files.pythonhosted.org/packages/83/e9/365d186f809312491e4ddb731fd920e99d5999690cdeef1a6d15a8423081/ngraph_core-0.15.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3627a5132036f1d9d86157326443f55c", "sha256": "2cd79122949e0e6ce86bcda0d9da82ce0c9e2087bbe26aac35662180e6d1b05b" }, "downloads": -1, "filename": "ngraph_core-0.15.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3627a5132036f1d9d86157326443f55c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 80129872, "upload_time": "2019-03-08T03:53:22", "url": "https://files.pythonhosted.org/packages/41/fe/c9d6ab9106afcc8dfffd8406b0878341c02eb4683bc25f065d110cad354b/ngraph_core-0.15.0-cp37-cp37m-manylinux1_x86_64.whl" } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "db5e4ae0385b6f212d75dee7edbf6e75", "sha256": "0f17a9fee66f71b80f3a14cb8cd45a22d1b49757eea96bbae4bec81297d6e29d" }, "downloads": -1, "filename": "ngraph_core-0.18.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "db5e4ae0385b6f212d75dee7edbf6e75", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 80699789, "upload_time": "2019-04-12T18:40:38", "url": "https://files.pythonhosted.org/packages/e9/36/7c9f796f85dae011c6c712fc6d20a6cd7685f568aeddf9e240d8515c6b62/ngraph_core-0.18.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5f23be5a1e43e53f62a57e0a0fe99790", "sha256": "4715a80bf8e1c8a14e1687ff5339c5f76b0c8324f223a6d9a70d8d3c36be9a1e" }, "downloads": -1, "filename": "ngraph_core-0.18.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5f23be5a1e43e53f62a57e0a0fe99790", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 80785661, "upload_time": "2019-04-12T18:41:00", "url": "https://files.pythonhosted.org/packages/6b/a9/66d34555d440ec46e75b9ba4de2a4bf991e89ccc17d20c4ff4740cca9f88/ngraph_core-0.18.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d7f18ba41674e03db2cb97a5771afba1", "sha256": "2ce6d36e34b994162cc9435aae9222f190978a3d470befdb4b44ee92460fbf93" }, "downloads": -1, "filename": "ngraph_core-0.18.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d7f18ba41674e03db2cb97a5771afba1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 80794087, "upload_time": "2019-04-12T18:41:24", "url": "https://files.pythonhosted.org/packages/28/28/94288643c187fe843478674dd2e4b1f29172fc47fc5815761e66ca223449/ngraph_core-0.18.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9dfa1ea146adf16ae9f8a509156635a4", "sha256": "e7aeb4b56f433f77531775dd19c3085822b677ca7b0c5a224f5674c506e18e02" }, "downloads": -1, "filename": "ngraph_core-0.18.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9dfa1ea146adf16ae9f8a509156635a4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 80860286, "upload_time": "2019-04-12T18:41:48", "url": "https://files.pythonhosted.org/packages/ff/e3/46bdecb3087da99f3f59c3f0cf0604b0456f21a8927250d0d3979744c3ad/ngraph_core-0.18.0-cp37-cp37m-manylinux1_x86_64.whl" } ], "0.18.1": [ { "comment_text": "", "digests": { "md5": "dcf9389b526e9b287b8901e7bee4f8cc", "sha256": "d632cb7b76e7299b23bc1cad321d01560c58f7a6d834b3812d5d777653ac0e03" }, "downloads": -1, "filename": "ngraph_core-0.18.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dcf9389b526e9b287b8901e7bee4f8cc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 80705025, "upload_time": "2019-04-19T20:37:38", "url": "https://files.pythonhosted.org/packages/9c/27/c865e3c9f7a537f0a6c4e477629b8fcae77c2a3cae733e19d6dfe00d393e/ngraph_core-0.18.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1ab377bb5a3ce6c8b6ca4481cb347504", "sha256": "4fa97309f6217c4eadff5e605b78a3157a7732311b90c9107ea631bac8a9f7b0" }, "downloads": -1, "filename": "ngraph_core-0.18.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1ab377bb5a3ce6c8b6ca4481cb347504", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 80790894, "upload_time": "2019-04-19T20:37:56", "url": "https://files.pythonhosted.org/packages/a4/8f/32d99bf6f0617ec32c1deaccb64b56760f9c1b3c2a912928aadcb7b14b5a/ngraph_core-0.18.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d518c090c7872544fcff96d77d8a729", "sha256": "2f1858d435af3eb44bd1f57d451c1be1574e62b3aa348558b05aa79c1eb11e62" }, "downloads": -1, "filename": "ngraph_core-0.18.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2d518c090c7872544fcff96d77d8a729", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 80799315, "upload_time": "2019-04-19T20:38:15", "url": "https://files.pythonhosted.org/packages/0f/9a/e5ae7a81d05d0420a7859490cd81372674fa2576528bd1ff9e51590dfff4/ngraph_core-0.18.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8e730aa61578098ce397f98265af8e8a", "sha256": "d384030957a374df004415a0c7cde1983e2095d7a2fe52dd6f10b1233d8efa69" }, "downloads": -1, "filename": "ngraph_core-0.18.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e730aa61578098ce397f98265af8e8a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 80865508, "upload_time": "2019-04-19T20:38:34", "url": "https://files.pythonhosted.org/packages/e9/37/bb8815411f4b8bf603fa68191f7e118134ca53fc28eac34ac5185589aa3f/ngraph_core-0.18.1-cp37-cp37m-manylinux1_x86_64.whl" } ], "0.22.0": [ { "comment_text": "", "digests": { "md5": "67f620727a3d04919a2b0ed2629c8fed", "sha256": "b09ebcc02e8541fa614d2522ca44b7920c091725311034038d3af28c1e1891a4" }, "downloads": -1, "filename": "ngraph_core-0.22.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "67f620727a3d04919a2b0ed2629c8fed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 84901553, "upload_time": "2019-06-20T19:11:54", "url": "https://files.pythonhosted.org/packages/a4/3b/db046f18df2aac1f186069a3d97bfa2a0915d820d719a0b6842bd806be4e/ngraph_core-0.22.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "05313ed00743a7e3c4de0b3b2566740f", "sha256": "0ae636b9be075b7e27acd7933b0720760be77502f97ec9d4c5017ca39508a4f5" }, "downloads": -1, "filename": "ngraph_core-0.22.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "05313ed00743a7e3c4de0b3b2566740f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 84990477, "upload_time": "2019-06-20T19:12:09", "url": "https://files.pythonhosted.org/packages/f1/5b/201d452a0d393176f063fecf8d635c74042cb396c6954c88ca04a30a4766/ngraph_core-0.22.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bd828084b2ba9d20332726c75becf5d9", "sha256": "b82346166e0670195d8164ff68d5cd7b276450044daf78449817e09ba861f5a2" }, "downloads": -1, "filename": "ngraph_core-0.22.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bd828084b2ba9d20332726c75becf5d9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 85000995, "upload_time": "2019-06-20T19:12:24", "url": "https://files.pythonhosted.org/packages/dd/e9/144148c221130ed0c4c87e19221d85ed470ccf142f7a98315767fca47670/ngraph_core-0.22.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5e7a7fa3b99ca3625938eaeba2865650", "sha256": "c1aa4f6f845abacbf490907b4108a5405a7fdaf794a430071af455d2a4ca0084" }, "downloads": -1, "filename": "ngraph_core-0.22.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5e7a7fa3b99ca3625938eaeba2865650", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 85067911, "upload_time": "2019-06-20T19:12:39", "url": "https://files.pythonhosted.org/packages/58/10/cf10ec7dd2d87016125dad5e031b641a9d544e50a52498f65a2e48c04040/ngraph_core-0.22.0-cp37-cp37m-manylinux1_x86_64.whl" } ], "0.24.0": [ { "comment_text": "", "digests": { "md5": "b33585fd9163cd94c96622775a8f0609", "sha256": "8bfcc8f77c620fb56801bb7666a8fea12fbf3b4c00d98fe62964bf4a2def17e8" }, "downloads": -1, "filename": "ngraph_core-0.24.0-cp27-cp27m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "b33585fd9163cd94c96622775a8f0609", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 44610880, "upload_time": "2019-07-30T21:14:55", "url": "https://files.pythonhosted.org/packages/79/93/4f693f0948e462a1b4be009aa77265a8126298be81551ff2c580337cc0f5/ngraph_core-0.24.0-cp27-cp27m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "335ab94d879ae5a9754386a8b4e1a1ab", "sha256": "26d27f843af16a461d53cc2125fe3aa58bbcc225ff60e697dc9b6a24e24616b4" }, "downloads": -1, "filename": "ngraph_core-0.24.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "335ab94d879ae5a9754386a8b4e1a1ab", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 85826166, "upload_time": "2019-07-30T21:14:36", "url": "https://files.pythonhosted.org/packages/c7/1e/f1146d0a784b029d5398ea4257bf4f870ec45f0264dfadc3c405c4c6b3dd/ngraph_core-0.24.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "058d3b3a28363ad57fd28d8fb5dfb920", "sha256": "cafd12fe3fc109ea499fc2b3c248e7a449fc9e9ad226b9de13ed8e16616cace6" }, "downloads": -1, "filename": "ngraph_core-0.24.0-cp35-cp35m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "058d3b3a28363ad57fd28d8fb5dfb920", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 44616232, "upload_time": "2019-07-30T21:15:06", "url": "https://files.pythonhosted.org/packages/63/f1/4a4fb30727469884b83686eb3d52f50655a7984bde4c2d08e83a16200f35/ngraph_core-0.24.0-cp35-cp35m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dc19d322f0c80c7bc6d634a4852007f1", "sha256": "bebd4b7d21d1a62ba5fc2bd78a0ea3d751fab3783812bd9d66362eace58a64c6" }, "downloads": -1, "filename": "ngraph_core-0.24.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dc19d322f0c80c7bc6d634a4852007f1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 85900136, "upload_time": "2019-07-30T21:14:52", "url": "https://files.pythonhosted.org/packages/49/83/555cb12a9ab63f7f78baef86aa30720753c78d9f40caf9c6ea4f0730ca49/ngraph_core-0.24.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c4774d6dcae43805eb7cbb90ec3a9ef9", "sha256": "93c3ca45f76fb98b50456657defe5d5d4d3e7993111fe7e29c46fff84f08c870" }, "downloads": -1, "filename": "ngraph_core-0.24.0-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "c4774d6dcae43805eb7cbb90ec3a9ef9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 44616231, "upload_time": "2019-07-30T21:15:16", "url": "https://files.pythonhosted.org/packages/72/96/f8fd0acccbe048425fe7d4d54960a0065de4a3718f71eef9e28a0f0d1540/ngraph_core-0.24.0-cp36-cp36m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "dfadc6e48241368cbf59378a56a9256d", "sha256": "0822a0b2c9078d20ec2a6eec44c51d090776d50a34e8f64e6237550c18fdf45f" }, "downloads": -1, "filename": "ngraph_core-0.24.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dfadc6e48241368cbf59378a56a9256d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 85915822, "upload_time": "2019-07-30T21:15:07", "url": "https://files.pythonhosted.org/packages/98/3c/436714137e050c43154fbf1329a98dafeaa5128fdc010446ca20cc9133a0/ngraph_core-0.24.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ee28a551cc10d95dd2908804a8c0d8ca", "sha256": "f0f8b0b84a5ee6f1656accad974371aa691075101496f255b76178fda9a301ab" }, "downloads": -1, "filename": "ngraph_core-0.24.0-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "ee28a551cc10d95dd2908804a8c0d8ca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 44616339, "upload_time": "2019-07-30T21:15:26", "url": "https://files.pythonhosted.org/packages/14/7e/810a52935e63016a34c697ea3ccb6a599987a15642407314fe686104d002/ngraph_core-0.24.0-cp37-cp37m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9deaa66f06e1e3f7ce2a6107fc68f925", "sha256": "17fba8712c4dd0e205e9c7d5d96f55c16b6ec05d9b5bcb57bc953b448ca27a30" }, "downloads": -1, "filename": "ngraph_core-0.24.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9deaa66f06e1e3f7ce2a6107fc68f925", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 85982716, "upload_time": "2019-07-30T21:15:24", "url": "https://files.pythonhosted.org/packages/06/da/945af59eb28a684346e75c5400271772879c5b24f5b0107e39dc141e0dfe/ngraph_core-0.24.0-cp37-cp37m-manylinux1_x86_64.whl" } ], "0.25.0": [ { "comment_text": "", "digests": { "md5": "bdb9c49919196bde97250ad88487e7c1", "sha256": "e5dd25be985348844fde195f8e4a55131ab0800c6c07eb2e2beae1eca72f4f16" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp27-cp27m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "bdb9c49919196bde97250ad88487e7c1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 47057190, "upload_time": "2019-08-14T17:09:26", "url": "https://files.pythonhosted.org/packages/66/bd/31636d29ba1f9c40f7d188ff25c21bf8d97b00fea6f99648b6a9a908c63f/ngraph_core-0.25.0-cp27-cp27m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d13c2e0451c01f04ab44242b25afc6f3", "sha256": "f5bcdc9c8d40b96fb53fccbb47632359e8226c8a1a97b4fabfc481c9c718f85c" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d13c2e0451c01f04ab44242b25afc6f3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 87068112, "upload_time": "2019-08-14T17:03:46", "url": "https://files.pythonhosted.org/packages/f4/5e/f112c8465b033df97392a33bb217a3f999f1fcec77308915fdeb2869245a/ngraph_core-0.25.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fffd159b0aa93bf74e4ace9458e454dd", "sha256": "b5781ca42d5d680771c123e966a6cdd6378a2206d743f4c945bf838356974440" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp35-cp35m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "fffd159b0aa93bf74e4ace9458e454dd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 47063639, "upload_time": "2019-08-14T17:09:36", "url": "https://files.pythonhosted.org/packages/d6/0a/df795f09654ef76003925b4b41c59e83171f3e8432364010a0abdc8e2ed0/ngraph_core-0.25.0-cp35-cp35m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f3567e94e74db1dd8edf6d1e9978edc", "sha256": "569cb1a34ab1c7313751259ba90e95ea1b49f17c059114f052b9f373d67b4448" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0f3567e94e74db1dd8edf6d1e9978edc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 87238467, "upload_time": "2019-08-14T17:04:02", "url": "https://files.pythonhosted.org/packages/79/32/489d8ea60029243283bbe1b11a1d57a9047c05764753f586de8fcdc88a3d/ngraph_core-0.25.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "60c13c3094270a3f7bf4bff808a4678f", "sha256": "0a57e6b412cdfd1879ce847decb84130e271df3ae751bb42ef05e4b3d88cccb5" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "60c13c3094270a3f7bf4bff808a4678f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 47063642, "upload_time": "2019-08-14T17:09:46", "url": "https://files.pythonhosted.org/packages/4b/6f/5a3607ec7cbe10dcdb5ba14ce4f0d8a474682f98133676869fd597fb030a/ngraph_core-0.25.0-cp36-cp36m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6c249ab0e383dd7e23d38530f9bf78b2", "sha256": "096bf77b1c068fe52cd0958a15ad009344d16aa57f3a2598be24a81af312f026" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6c249ab0e383dd7e23d38530f9bf78b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 87246585, "upload_time": "2019-08-14T17:04:16", "url": "https://files.pythonhosted.org/packages/3c/85/8deb02374e731c270e8394c7fea36ba5b12c2103a08c4995406f83356cd8/ngraph_core-0.25.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "88743e267c894f219778314970fcec5a", "sha256": "8728db36a58255006b753131ae74ca77f78bf4b63cd1e9d977a6fbb9da2a7c21" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "88743e267c894f219778314970fcec5a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 47063672, "upload_time": "2019-08-14T17:09:59", "url": "https://files.pythonhosted.org/packages/42/3c/43cc58393fc0d6005c18d672a358abc87951acb24d4f5d0781addd7c65a8/ngraph_core-0.25.0-cp37-cp37m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b9240dd5530dedae07e133f9e569f404", "sha256": "d8e7bd9af2d3bae7230ed30fb1e6b2ea8565d287a7baf3bf27988cdb42711051" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b9240dd5530dedae07e133f9e569f404", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 87424446, "upload_time": "2019-08-14T17:04:31", "url": "https://files.pythonhosted.org/packages/f3/0a/3d38bb01243598b2e903f35c98a62c9a6db7aef17344aa6997b9813382f0/ngraph_core-0.25.0-cp37-cp37m-manylinux1_x86_64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bdb9c49919196bde97250ad88487e7c1", "sha256": "e5dd25be985348844fde195f8e4a55131ab0800c6c07eb2e2beae1eca72f4f16" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp27-cp27m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "bdb9c49919196bde97250ad88487e7c1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 47057190, "upload_time": "2019-08-14T17:09:26", "url": "https://files.pythonhosted.org/packages/66/bd/31636d29ba1f9c40f7d188ff25c21bf8d97b00fea6f99648b6a9a908c63f/ngraph_core-0.25.0-cp27-cp27m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d13c2e0451c01f04ab44242b25afc6f3", "sha256": "f5bcdc9c8d40b96fb53fccbb47632359e8226c8a1a97b4fabfc481c9c718f85c" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d13c2e0451c01f04ab44242b25afc6f3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 87068112, "upload_time": "2019-08-14T17:03:46", "url": "https://files.pythonhosted.org/packages/f4/5e/f112c8465b033df97392a33bb217a3f999f1fcec77308915fdeb2869245a/ngraph_core-0.25.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fffd159b0aa93bf74e4ace9458e454dd", "sha256": "b5781ca42d5d680771c123e966a6cdd6378a2206d743f4c945bf838356974440" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp35-cp35m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "fffd159b0aa93bf74e4ace9458e454dd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 47063639, "upload_time": "2019-08-14T17:09:36", "url": "https://files.pythonhosted.org/packages/d6/0a/df795f09654ef76003925b4b41c59e83171f3e8432364010a0abdc8e2ed0/ngraph_core-0.25.0-cp35-cp35m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f3567e94e74db1dd8edf6d1e9978edc", "sha256": "569cb1a34ab1c7313751259ba90e95ea1b49f17c059114f052b9f373d67b4448" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0f3567e94e74db1dd8edf6d1e9978edc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 87238467, "upload_time": "2019-08-14T17:04:02", "url": "https://files.pythonhosted.org/packages/79/32/489d8ea60029243283bbe1b11a1d57a9047c05764753f586de8fcdc88a3d/ngraph_core-0.25.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "60c13c3094270a3f7bf4bff808a4678f", "sha256": "0a57e6b412cdfd1879ce847decb84130e271df3ae751bb42ef05e4b3d88cccb5" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "60c13c3094270a3f7bf4bff808a4678f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 47063642, "upload_time": "2019-08-14T17:09:46", "url": "https://files.pythonhosted.org/packages/4b/6f/5a3607ec7cbe10dcdb5ba14ce4f0d8a474682f98133676869fd597fb030a/ngraph_core-0.25.0-cp36-cp36m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6c249ab0e383dd7e23d38530f9bf78b2", "sha256": "096bf77b1c068fe52cd0958a15ad009344d16aa57f3a2598be24a81af312f026" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6c249ab0e383dd7e23d38530f9bf78b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 87246585, "upload_time": "2019-08-14T17:04:16", "url": "https://files.pythonhosted.org/packages/3c/85/8deb02374e731c270e8394c7fea36ba5b12c2103a08c4995406f83356cd8/ngraph_core-0.25.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "88743e267c894f219778314970fcec5a", "sha256": "8728db36a58255006b753131ae74ca77f78bf4b63cd1e9d977a6fbb9da2a7c21" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "88743e267c894f219778314970fcec5a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 47063672, "upload_time": "2019-08-14T17:09:59", "url": "https://files.pythonhosted.org/packages/42/3c/43cc58393fc0d6005c18d672a358abc87951acb24d4f5d0781addd7c65a8/ngraph_core-0.25.0-cp37-cp37m-macosx_10_14_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b9240dd5530dedae07e133f9e569f404", "sha256": "d8e7bd9af2d3bae7230ed30fb1e6b2ea8565d287a7baf3bf27988cdb42711051" }, "downloads": -1, "filename": "ngraph_core-0.25.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b9240dd5530dedae07e133f9e569f404", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 87424446, "upload_time": "2019-08-14T17:04:31", "url": "https://files.pythonhosted.org/packages/f3/0a/3d38bb01243598b2e903f35c98a62c9a6db7aef17344aa6997b9813382f0/ngraph_core-0.25.0-cp37-cp37m-manylinux1_x86_64.whl" } ] }