cavis/libnd4j/tests_cpu/layers_tests
Yurii Shyrma 753ce28a92
Shyrma sqrtm (#429)
* - start working on implementation of sqrtm op

Signed-off-by: Yurii <iuriish@yahoo.com>

* - improving householder procedure

Signed-off-by: Yurii <iuriish@yahoo.com>

* - further polishing householder stuff

Signed-off-by: Yurii <iuriish@yahoo.com>

* - polishing hh pivoting qr procedure

Signed-off-by: Yurii <iuriish@yahoo.com>

* - polishing BiDiagonalUp procedure

Signed-off-by: Yurii <iuriish@yahoo.com>

* - polishing householder sequence class

Signed-off-by: Yurii <iuriish@yahoo.com>

* - polishing jacobi svd class

Signed-off-by: Yurii <iuriish@yahoo.com>

* - polishing svd stuff 1

Signed-off-by: Yurii <iuriish@yahoo.com>

* - polishing svd stuff 2

Signed-off-by: Yurii <iuriish@yahoo.com>

* - implementation and testing class which performs Hessenberg decomposition of square matrix

Signed-off-by: Yurii <iuriish@yahoo.com>

* - add static method to JacobiSVD class which makes the continuous Givens rotation generation algorithm

Signed-off-by: Yurii <iuriish@yahoo.com>

* - implementation and testing auxiliary methods of Schur decomp class

Signed-off-by: Yurii <iuriish@yahoo.com>

* some references here and there

Signed-off-by: raver119 <raver119@gmail.com>

* - trying figure out difference between eigen and our Schur alg

Signed-off-by: Yurii <iuriish@yahoo.com>

* - testing fixing bugs in Schur decomposition op

Signed-off-by: Yurii <iuriish@yahoo.com>

* - start to implement class which performs calculation of eigen values and vectors

Signed-off-by: Yurii <iuriish@yahoo.com>

* - add to EigenValsAndVecs method which calculates complex eigen vectors

Signed-off-by: Yurii <iuriish@yahoo.com>

* - testing and fixing bugs in EigenValsAndVecs class

Signed-off-by: Yurii <iuriish@yahoo.com>

* - implementation and testing triangularSolver class

Signed-off-by: Yurii <iuriish@yahoo.com>

* Added a 2D routine for triangular systems solve.

Signed-off-by: shugeo <sgazeos@gmail.com>

* Refactored triangularSolve2D routine and tests.

Signed-off-by: shugeo <sgazeos@gmail.com>

* Refactored another test for triangularSolve2D.

Signed-off-by: shugeo <sgazeos@gmail.com>

* Refactored test for triangularSolve for vector-bar case.

Signed-off-by: shugeo <sgazeos@gmail.com>

* Refactored triangularSolve2D routine and tests.

Signed-off-by: shugeo <sgazeos@gmail.com>

* - implementation of FullPivLU class

Signed-off-by: Yurii <iuriish@yahoo.com>

* - fix bugs in FullPivLU::solve method

Signed-off-by: Yurii <iuriish@yahoo.com>

* - correct permutation vector in FullPivLU::solve

Signed-off-by: Yurii <iuriish@yahoo.com>

* - correct include headers

Signed-off-by: Yurii <iuriish@yahoo.com>

* - implementation of Sqrtm class

Signed-off-by: Yurii <iuriish@yahoo.com>

* - testing and fixing bugs in Sqrtm class

Signed-off-by: Yurii <iuriish@yahoo.com>

* - include sqrtm classes to cuda folder, investigate in what places synchronization doesn't work

Signed-off-by: Yurii <iuriish@yahoo.com>

* Added implementation for cuda triangularSolve2D and also refactored triangularSolve2D for cpu.

Signed-off-by: shugeo <sgazeos@gmail.com>

* Eliminated waste implementations.

Signed-off-by: shugeo <sgazeos@gmail.com>

* - make offset calculation faster in t<> methods

Signed-off-by: Yurii <iuriish@yahoo.com>

* - rename refference T& NDArray::t<> method

Signed-off-by: Yurii <iuriish@yahoo.com>

* - further work on cuda sqrtm

Signed-off-by: Yurii <iuriish@yahoo.com>

* - provide correct synchronization to device in Sqrtm class

Signed-off-by: Yurii <iuriish@yahoo.com>

* - add tests for sqrtm op

Signed-off-by: Yurii <iuriish@yahoo.com>

* - correct fails which appeared while testing on jenkins

Signed-off-by: Yurii <iuriish@yahoo.com>

* - trying to find out mistake in svd::deflation method

Signed-off-by: Yurii <iuriish@yahoo.com>

* Revert "- trying to find out mistake in svd::deflation method"

This reverts commit 19d37baddbc509028e4bc67bc932fe7449becdb6.

* Revert "- trying to find out mistake in svd::deflation method"

This reverts commit 19d37baddbc509028e4bc67bc932fe7449becdb6.

Signed-off-by: Yurii <iuriish@yahoo.com>

* - change call semantic of r<> and t<> methods

Signed-off-by: Yurii <iuriish@yahoo.com>

* - ged rid of ambiguity in * operator overloads for windows buikd

Signed-off-by: Yurii <iuriish@yahoo.com>

* - get rid of ambiguity in * operator overloads for windows build 2

Signed-off-by: Yurii <iuriish@yahoo.com>

* - get rid of ambiguity in * operator overloads for windows build 3

Signed-off-by: Yurii <iuriish@yahoo.com>

* - resolve conflicts with master

Signed-off-by: Yurii <iuriish@yahoo.com>

* cmakelists updated

Signed-off-by: raver119@gmail.com <raver119@gmail.com>

* - minor fix in merge cpu helper - make use of reference getter

Signed-off-by: Yurii <iuriish@yahoo.com>

Co-authored-by: raver119 <raver119@gmail.com>
Co-authored-by: shugeo <sgazeos@gmail.com>
2020-05-14 18:06:13 +03:00
..
AllTests.cpp Eclipse Migration Initial Commit 2019-06-06 15:21:15 +03:00
ArrayOptionsTests.cpp Shyrma reshape empty (#338) 2020-03-31 07:41:16 +03:00
AtomicTests.cu compression ops (#436) 2020-05-08 20:59:39 +03:00
AttentionTests.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
BackpropTests.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
BitwiseUtilsTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
BooleanOpsTests.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
BroadcastableOpsTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
BrodcastTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
CMakeLists.txt stop using static library for tests (#450) 2020-05-12 07:48:29 +03:00
CnpyTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
ConditionalTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
ConstantShapeHelperTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
ContextTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
ConvolutionTests1.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
ConvolutionTests2.cpp Shyrma weights format (#329) 2020-03-20 12:11:27 +03:00
CuDnnTests.cu Revert "OpenMP Threads execution (#297)" (#299) 2020-03-09 08:22:49 +03:00
CudaBasicsTests1.cu [WIP] minor fixes (#447) 2020-05-11 15:41:43 +03:00
CudaBasicsTests2.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
CudaExtraArgumentsTests.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
CudaLaunchHelperTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
DataBufferTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
DataBufferTestsCuda.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
DataTypesValidationTests.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
DeclarableOpsTests1.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
DeclarableOpsTests2.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
DeclarableOpsTests3.cpp Shyrma merge max ind (#443) 2020-05-12 07:47:09 +03:00
DeclarableOpsTests4.cpp Shyrma reshape empty (#338) 2020-03-31 07:41:16 +03:00
DeclarableOpsTests5.cpp Shyrma merge max ind (#443) 2020-05-12 07:47:09 +03:00
DeclarableOpsTests6.cpp Shyrma merge max ind (#443) 2020-05-12 07:47:09 +03:00
DeclarableOpsTests7.cpp Shugeo segment fix4 (#385) 2020-04-20 09:04:35 +03:00
DeclarableOpsTests8.cpp Shyrma merge max ind (#443) 2020-05-12 07:47:09 +03:00
DeclarableOpsTests9.cpp Shyrma merge max ind (#443) 2020-05-12 07:47:09 +03:00
DeclarableOpsTests10.cpp Lin_space operation improve (#373) 2020-04-16 14:53:56 +03:00
DeclarableOpsTests11.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
DeclarableOpsTests12.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
DeclarableOpsTests13.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
DeclarableOpsTests14.cpp - correct reshape op for empty shapes (#354) 2020-04-01 15:13:34 +11:00
DeclarableOpsTests15.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
DeclarableOpsTests16.cpp Shyrma merge max ind (#443) 2020-05-12 07:47:09 +03:00
DeclarableOpsTests17.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
DeclarableOpsTests18.cpp xw_plus_b mkldnn implementation (#247) 2020-03-31 13:03:10 +03:00
DeclarableOpsTests19.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
DeclarableOpsTestsCuda1.cu Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
EmptyTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
ExtraArgumentsTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
FlatBuffersTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
FlatUtilsTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
GraphExecutionerTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
GraphHolderTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
GraphRandomGeneratorTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
GraphStateTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
GraphTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
HashUtilsTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
HelpersTests1.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
HelpersTests2.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
IndexingTests.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
JavaInteropCudaTests.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
JavaInteropTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
LambdaTests.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
LaunchContextCudaTests.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
LegacyOpsCudaTests.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
LegacyOpsTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
ListOperationsTests.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
LoopCoordsHelperTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
MemoryUtilsTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
MklDnnTests.cpp MKLDNN tweaks (#415) 2020-04-27 17:37:53 +03:00
MmapTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
MultiDataTypeTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
MultiDeviceTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
NDArrayConstructorsTests.cu Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
NDArrayCudaBasicsTests.cu Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
NDArrayListTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
NDArrayTests.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
NDArrayTests2.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
NativeOpsTests.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
NlpTests.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
NodeTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
OmpLaunchHelperTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
OneOffTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
OpTrackerTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
OpTupleTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
PairwiseTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
ParityOpsTests.cpp Shyrma reshape empty (#338) 2020-03-31 07:41:16 +03:00
PerformanceTests.cpp MKLDNN tweaks (#415) 2020-04-27 17:37:53 +03:00
PlaygroundTests.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
ProtoBufTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
QuantizationTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
RNGTests.cpp Shyrma sqrtm (#429) 2020-05-14 18:06:13 +03:00
ResultSetTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
SanityTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
ScalarTests.cpp Shyrma reshape empty (#338) 2020-03-31 07:41:16 +03:00
ScopeTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
ServerRelatedTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
SessionLocalTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
ShapeTests.cpp Improve ResultSet usage in libnd4j (#281) 2020-03-10 07:42:50 +03:00
ShapeTests2.cpp profiling of stack and unstack ops (#261) 2020-03-03 07:32:37 +03:00
ShapeUtilsTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
SingleDimTests.cpp Shyrma reshape empty (#338) 2020-03-31 07:41:16 +03:00
SortCpuTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
SortCudaTests.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
SparseUtilsTest.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
StashTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
StringTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
SwitchTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
TadTests.cpp Legacy API changes (#441) 2020-05-09 08:06:14 +03:00
ThreadsTests.cpp Revert "OpenMP Threads execution (#297)" (#299) 2020-03-09 08:22:49 +03:00
TypeCastTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
VariableProxyTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
VariableSpaceTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
VariableTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
WorkspaceTests.cpp libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
WorkspaceTests.cu libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
suppressions.txt Eclipse Migration Initial Commit 2019-06-06 15:21:15 +03:00
testinclude.h libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00
testlayers.h libnd4j polishing (#273) 2020-03-02 12:49:41 +03:00