Revision c4558e313e91031456206d947e2315268eceb952 authored by Katharine Hyatt on 27 October 2017, 03:04:21 UTC, committed by Sacha Verweij on 27 October 2017, 03:04:21 UTC
* Tests for converting to Array (and Matrix) for SVD

* Tests for converting to Array (and Matrix) from Schur

* Few missing symmetric tests

* Tests for converting to Array (and Matrix) from Hessenberg

* Tests for converting to Array (and Matrix) from LU
1 parent 4bbec3d
Raw File
llvm-ver.make
LLVM_VER_MAJ:=$(word 1, $(subst ., ,$(LLVM_VER)))
LLVM_VER_MIN:=$(word 2, $(subst ., ,$(LLVM_VER)))
# define a "short" LLVM version for easy comparisons
ifeq ($(LLVM_VER),svn)
LLVM_VER_SHORT:=svn
else
LLVM_VER_SHORT:=$(LLVM_VER_MAJ).$(LLVM_VER_MIN)
endif
LLVM_VER_PATCH:=$(word 3, $(subst ., ,$(LLVM_VER)))
ifeq ($(LLVM_VER_PATCH),)
LLVM_VER_PATCH := 0
endif
back to top