Skip to content

Commit

Permalink
Merge branch 'master' into features/681-balanced
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaudiaComito committed Nov 16, 2020
2 parents ab9200d + 017ab4d commit 8992946
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# v0.5.1

- [#678](https://github.com/helmholtz-analytics/heat/pull/678) Bugfix: Internal functions now use explicit device parameters for DNDarray and torch.Tensor initializations.
- [#684](https://github.com/helmholtz-analytics/heat/pull/684) Bug fix: distributed `reshape` does not work on booleans.
- [#684](https://github.com/helmholtz-analytics/heat/pull/684) Bug fix: distributed `reshape` now works on booleans as well.

# v0.5.0

Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="doc/images/logo.png">
<img src="https://raw.githubusercontent.com/helmholtz-analytics/heat/master/doc/images/logo.png">
</div>

---
Expand Down Expand Up @@ -90,6 +90,13 @@ License
HeAT is distributed under the MIT license, see our
[LICENSE](LICENSE) file.

Citing HeAT
-----------

If you find HeAT helpful for your research, please mention it in your academic publications. You can cite:

- Götz, M., Debus, C., Coquelin, D., et al., "HeAT - a Distributed and GPU-accelerated Tensor Framework for Data Analytics." 2020 IEEE International Conference on Big Data (Big Data). IEEE, 2020 (accepted). [[Download](https://arxiv.org/abs/2007.13552)]

Acknowledgements
----------------

Expand All @@ -104,5 +111,5 @@ under the Helmholtz AI platform grant.*
---

<div align="center">
<a href="https://www.dlr.de/EN/Home/home_node.html"><img src="doc/images/dlr_logo.svg" height="50px" hspace="3%" vspace="20px"></a><a href="https://www.fz-juelich.de/portal/EN/Home/home_node.html"><img src="doc/images/fzj_logo.svg" height="50px" hspace="3%" vspace="20px"></a><a href="http://www.kit.edu/english/index.php"><img src="doc/images/kit_logo.svg" height="50px" hspace="3%" vspace="20px"></a><a href="https://www.helmholtz.de/en/"><img src="doc/images/helmholtz_logo.svg" height="50px" hspace="3%" vspace="20px"></a>
<a href="https://www.dlr.de/EN/Home/home_node.html"><img src="https://raw.githubusercontent.com/helmholtz-analytics/heat/master/doc/images/dlr_logo.svg" height="50px" hspace="3%" vspace="20px"></a><a href="https://www.fz-juelich.de/portal/EN/Home/home_node.html"><img src="https://raw.githubusercontent.com/helmholtz-analytics/heat/master/doc/images/fzj_logo.svg" height="50px" hspace="3%" vspace="20px"></a><a href="http://www.kit.edu/english/index.php"><img src="https://raw.githubusercontent.com/helmholtz-analytics/heat/master/doc/images/kit_logo.svg" height="50px" hspace="3%" vspace="20px"></a><a href="https://www.helmholtz.de/en/"><img src="https://raw.githubusercontent.com/helmholtz-analytics/heat/master/doc/images/helmholtz_logo.svg" height="50px" hspace="3%" vspace="20px"></a>
</div>
2 changes: 1 addition & 1 deletion heat/core/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
major = 0
minor = 5
micro = 0
micro = 1
extension = None

if not extension:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
install_requires=["mpi4py>=3.0.0", "numpy>=1.13.0", "torch>=1.6.0", "scipy>=0.14.0"],
install_requires=["mpi4py>=3.0.0", "numpy>=1.13.0", "torch==1.6.0", "scipy>=0.14.0"],
extras_require={
"hdf5": ["h5py>=2.8.0"],
"netcdf": ["netCDF4>=1.4.0,<=1.5.2"],
Expand Down

0 comments on commit 8992946

Please sign in to comment.