summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2016-10-22Moved files around a bit; created a utilities subfolderCedric Nugteren
2016-10-22Added documentation for the better exception handlingCedric Nugteren
2016-10-22Merge pull request #117 from intelfx/exceptionsCedric Nugteren
2016-10-22Fixed a bug in the SYRK/SYR2K/HERK/HER2K routines that would occur with speci...Cedric Nugteren
2016-10-22Fixed a bug in the SYRK/SYR2K/HERK/HER2K routines that would occur with speci...Cedric Nugteren
2016-10-22Routine: get rid of ::SetUp()Ivan Shapovalov
2016-10-22treewide: use C++ exceptions properlyIvan Shapovalov
2016-10-22src/clpp11.hpp: avoid throwing exceptions from std::shared_ptr's DeleterIvan Shapovalov
2016-10-22src/clpp11.hpp: GetInfoString: avoid reallocationIvan Shapovalov
2016-10-22src/clpp11.hpp: reinstate error checking on clGetEventProfilingInfo()Ivan Shapovalov
2016-10-21Merge pull request #118 from matze/add-pkg-configCedric Nugteren
2016-10-21Generate and install pkg-config descriptionMatthias Vogelgesang
2016-10-14Fixed an issue with a growing database: the database is now a global variable...Cedric Nugteren
2016-10-13Added tuning results for Intel HD Graphics IvyBridge GPUCedric Nugteren
2016-10-12Removed a spurious #ifdefCedric Nugteren
2016-10-12Fixed missing line endingCedric Nugteren
2016-10-10Added support for compiling the library, the client, and the samples under MS...Cedric Nugteren
2016-10-10Fixed an issue with const members of structs in the databaseCedric Nugteren
2016-10-10Fixed an issue with the length of the GEMM OpenCL string for both MSVC 2013 a...Cedric Nugteren
2016-10-10First fixes towards compilation on Visual Studio 2013Cedric Nugteren
2016-10-10Updated the tuning results for the GTX 750 Ti GPUCedric Nugteren
2016-10-10Changed the thresholds for the direct/indirect GEMM kernels for NVIDIA and In...Cedric Nugteren
2016-10-08Fixed a performance bug for Intel Iris Pro GPUs due to incorrect tuning resultsCedric Nugteren
2016-10-06Added first tuning results for the single-kernel direct GEMM implementationCedric Nugteren
2016-10-06Added a kernel selection database to select between the direct and indirect G...Cedric Nugteren
2016-10-03Fixed a const-correctness issue with complex conjugation in the GEMM direct k...Cedric Nugteren
2016-10-03Added functions to load from off-chip to local memory without vector loads fo...Cedric Nugteren
2016-10-03Re-organised GEMM direct kernel and added faster fall-back version for incomp...Cedric Nugteren
2016-10-02Set the default number of runs for all kernels to at least 2 runsCedric Nugteren
2016-10-02Specialised the GEMM direct kernel in four ways for transposing/non-transposi...Cedric Nugteren
2016-10-02Split the GEMM direct kernel into two files; set the default tuning target to...Cedric Nugteren
2016-10-01Added padding to the local memory of the GEMM direct kernelCedric Nugteren
2016-10-01Added default num-runs to the tuner adding averaging over 10 runs as a defaul...Cedric Nugteren
2016-10-01Merge branch 'development' into gemm_directCedric Nugteren
2016-09-27Added an option to run tuned kernels multiple times to average execution time...Cedric Nugteren
2016-09-27Updated to version 8.0 of the CLCudaAPI headerCedric Nugteren
2016-09-27Fixed the local memory size computation for the GEMM tunersCedric Nugteren
2016-09-27Now generates test/client/tuner data using a fixed seed to enable reproducabi...Cedric Nugteren
2016-09-25Added a first version of a tuner for the GEMM direct kernel; collapsed MWGD, ...Cedric Nugteren
2016-09-25Separated the tuning parameters of the new direct GEMM kernel from the indire...Cedric Nugteren
2016-09-25Added a first version of the direct version of GEMM with local memoryCedric Nugteren
2016-09-21Merge branch 'development' into gemm_directCedric Nugteren
2016-09-21It is now possible to set the OpenCL compiler options through an environmenta...Cedric Nugteren
2016-09-12Split the XGEMM kernel further up: now in 3 parts. This is done because MSVC ...Cedric Nugteren
2016-09-12Added XgemvFastRot and Xgemm 16-bit tuning results: just defaults which are n...Cedric Nugteren
2016-09-11Complete re-write of the database script. Changed Pandas for the much faster ...Cedric Nugteren
2016-09-10Updated database based on exhaustive tuning results for GEMM for the R9 M370X...Cedric Nugteren
2016-09-10Updated the database script to remove duplicate entries: keeps only the best-...Cedric Nugteren
2016-09-06Split GEMM tuning in two parts: a small set of tuning parameters which is exp...Cedric Nugteren
2016-09-04The GEMM kernel no longer adds beta*C in case beta is zero; this would cause ...Cedric Nugteren