Skip to content

Commit

Permalink
artifact name for osx
Browse files Browse the repository at this point in the history
  • Loading branch information
gf712 authored and vigsterkr committed Feb 16, 2019
1 parent be2f8cf commit 5a75d96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .ci/macos-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ steps:
- template: ./download-extract.yml
parameters:
name: 'CCache'
artifactName: $(ccacheArtifactName)
artifactName: $(ccacheArtifactName)-$(use_mkl)
destinationFolder: $(ccacheDir)
downloadPath: $(build.binariesDirectory)

Expand Down Expand Up @@ -44,4 +44,4 @@ steps:
name: 'CCache'
dir: $(ccacheDir)
archive: $(ccacheArchive)
artifactName: $(ccacheArtifactName)
artifactName: $(ccacheArtifactName)-$(use_mkl)
2 changes: 1 addition & 1 deletion src/shogun/mathematics/Statistics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ float64_t CStatistics::log_det_general(const SGMatrix<float64_t> A)
{
Map<MatrixXd> eigen_A(A.matrix, A.num_rows, A.num_cols);
REQUIRE(eigen_A.rows()==eigen_A.cols(),
"Input matrix should be a sqaure matrix row(%d) col(%d)\n",
"Input matrix should be a square matrix row(%d) col(%d)\n",
eigen_A.rows(), eigen_A.cols());

PartialPivLU<MatrixXd> lu(eigen_A);
Expand Down

0 comments on commit 5a75d96

Please sign in to comment.