Skip to content

Commit

Permalink
Merge pull request #88 from JohanMabille/upgrade_xtensor
Browse files Browse the repository at this point in the history
Upgraded to xtensor 0.18.0
  • Loading branch information
JohanMabille committed Oct 16, 2018
2 parents 232aaed + 04b7730 commit 5460e11
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ install:
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- conda install xtensor=0.17.3 -c quantstack
- conda install xtensor=0.18.0 -c quantstack
- conda install gtest cmake -c conda-forge
- conda install m2w64-openblas -c msys2
# Patch OpenBLASConfig.cmake
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ install:
- conda info -a
- conda install gtest cmake -c conda-forge
# Install xtensor and BLAS
- conda install xtensor=0.17.3 -c quantstack
- conda install xtensor=0.18.0 -c quantstack
- if [[ "$BLAS" == "OpenBLAS" ]]; then
conda install openblas -c conda-forge;
elif [[ "$BLAS" == "mkl" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ http://xtensor-blas.readthedocs.io/

| `xtensor-blas` | `xtensor` |
|-----------------|-----------|
| master | ^0.17.0 |
| master | ^0.18.0 |
| 0.13.* | ^0.17.0 |
| 0.12.0 | ^0.17.0 |
| 0.11.1 | ^0.16.0 |
Expand Down
2 changes: 1 addition & 1 deletion test/test_linalg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ namespace xt
auto nearaf = xt::linalg::dot(qf, rf);
EXPECT_TRUE(allclose(nearaf, a));
EXPECT_EQ(std::get<1>(resr), rf);
EXPECT_EQ(std::get<0>(resr).size(), 1);
EXPECT_EQ(std::get<0>(resr).size(), 0);
EXPECT_EQ(std::get<0>(resr).dimension(), 2);

// the stuff below tests fine on Fedora 25, but apparently not on Ubuntu?
Expand Down

0 comments on commit 5460e11

Please sign in to comment.