Skip to content

Commit 6103da3

Browse files
author
Allard Hendriksen
committed
Update version
1 parent ac801f7 commit 6103da3

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88
### Added
9+
### Fixed
10+
### Removed
11+
12+
## [0.7.2] - 2019-07-30
13+
### Added
914
- Support for multi-gpu execution. Use `parallel=True` when
1015
constructing a `MSDRegressionModel` or `MSDSegmentationModel`.
1116
### Fixed
@@ -26,5 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2631
### Added
2732
- Initial release.
2833

29-
[Unreleased]: https://www.github.com/ahendriksen/msd_pytorch/compare/v0.6.2...master
34+
[Unreleased]: https://www.github.com/ahendriksen/msd_pytorch/compare/v0.7.2...master
35+
[0.7.2]: https://www.github.com/ahendriksen/msd_pytorch/compare/v0.7.1...v0.7.2
3036
[0.7.1]: https://www.github.com/ahendriksen/msd_pytorch/compare/v0.6.2...v0.7.1

conda/build.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ export CUDA_HOME=$TMP_NVCC_LOCATION/cuda-$cudatoolkit
3535
if [ -f $CUDA_HOME/bin/nvcc ] ; then
3636
echo "-- CUDA already installed";
3737
else
38-
bash $CUDA_INSTALLER --silent --toolkit --toolkitpath=$CUDA_HOME --tmpdir=$TMP_NVCC_LOCATION --override
38+
echo "Installing version ${cudatoolkit} "
39+
echo " with ${CUDA_INSTALLER}"
40+
echo " into ${CUDA_HOME}"
41+
echo " with temp space ${TMP_NVCC_LOCATION}"
42+
sh $CUDA_INSTALLER --silent --toolkit --toolkitpath=$CUDA_HOME --tmpdir=$TMP_NVCC_LOCATION --override
3943
fi
4044

4145
echo "-- Setting CUDA_HOME: $CUDA_HOME"

msd_pytorch/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.1
1+
0.7.2

0 commit comments

Comments
 (0)