aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported
Commit message (Collapse)AuthorAge
* Merged in benoitsteiner/opencl (pull request PR-253)Gravatar Benoit Steiner2016-11-19
|\ | | | | | | OpenCL improvements
| * Code cleanupGravatar Benoit Steiner2016-11-18
| |
| * Updated cxx11_tensor_device_sycl to run only on the OpenCL devices available ↵Gravatar Benoit Steiner2016-11-18
| | | | | | | | on the host
| * Only runs the cxx11_tensor_reduction_sycl on devices that are available.Gravatar Benoit Steiner2016-11-18
| |
| * Added the ability to run test exclusively OpenCL devices that are listed by ↵Gravatar Benoit Steiner2016-11-18
| | | | | | | | sycl::device::get_devices().
* | Deleted unnecessary semicolonsGravatar Benoit Steiner2016-11-18
| |
| * Test broadcasting on OpenCL devices with 64 bit indexingGravatar Benoit Steiner2016-11-18
| |
| * Cleaned up the sycl device codeGravatar Benoit Steiner2016-11-18
| |
| * Fixed the cxx11_tensor_device_sycl testGravatar Benoit Steiner2016-11-18
| |
| * adding Benoit changes on the TensorDeviceSycl.hGravatar Mehdi Goli2016-11-18
| |
| * Modifying TensorDeviceSycl.h to always create buffer of type uint8_t and ↵Gravatar Mehdi Goli2016-11-18
| | | | | | | | convert them to the actual type at the execution on the device; adding the queue interface class to separate the lifespan of sycl queue and buffers,created for that queue, from Eigen::SyclDevice; modifying sycl tests to support the evaluation of the results for both row major and column major data layout on all different devices that are supported by Sycl{CPU; GPU; and Host}.
| * Added isnan, isfinite and isinf for SYCL device. Plus test for that.Gravatar Luke Iwanski2016-11-18
| |
| * Now testing out (+=, =) in.FUNC() and out (+=, =) out.FUNC()Gravatar Luke Iwanski2016-11-18
| |
| * Merged eigen/eigen into defaultGravatar Benoit Steiner2016-11-17
| |\ | |/ |/|
| * Added a way to detect errors generated by the opencl device from the hostGravatar Benoit Steiner2016-11-17
| |
| * CleanupGravatar Benoit Steiner2016-11-17
| |
| * Created a test to check that the sycl runtime can successfully report errors ↵Gravatar Benoit Steiner2016-11-17
| | | | | | | | | | | | (like ivision by 0). Small cleanup
* | Made TensorDeviceCuda.h compile on windowsGravatar Benoit Steiner2016-11-17
| |
| * Avoid calling log(0) or 1/0Gravatar Benoit Steiner2016-11-17
| |
| * Fixed existing test.Gravatar Luke Iwanski2016-11-17
| |
| * Specialised basic math functions for SYCL device.Gravatar Luke Iwanski2016-11-17
|/
* Merged eigen/eigen into defaultGravatar Benoit Steiner2016-11-14
|\
| * Reduce dispatch overhead in parallelFor by only calling ↵Gravatar Rasmus Munk Larsen2016-11-14
| | | | | | | | thread_pool.Schedule() for one of the two recursive calls in handleRange. This avoids going through the scedule path to push both recursive calls onto another thread-queue in the binary tree, but instead executes one of them on the main thread. At the leaf level this will still activate a full complement of threads, but will save up to 50% of the overhead in Schedule (random number generation, insertion in queue which includes signaling via atomics).
* | Adding extra test for non-fixed size to broadcast; Replacing stcl with sycl.Gravatar Mehdi Goli2016-11-14
| |
* | Adding TensorFixsize; adding sycl device memcpy; adding insial stage of slicing.Gravatar Mehdi Goli2016-11-14
| |
* | Adding comment to TensorDeviceSycl.h and cleaning the code.Gravatar Mehdi Goli2016-11-11
|/
* Adding EIGEN_STRONG_INLINE back; using size() instead of ↵Gravatar Mehdi Goli2016-11-10
| | | | dimensions.TotalSize() on Tensor.
* adding the missing in eigen_assert!Gravatar Mehdi Goli2016-11-10
|
* Adding Memset; optimising MecopyDeviceToHost by removing double copying;Gravatar Mehdi Goli2016-11-10
|
* Added a test to validate memory transfers between host and sycl deviceGravatar Benoit Steiner2016-11-09
|
* Merged in benoitsteiner/opencl (pull request PR-246)Gravatar Benoit Steiner2016-11-08
|\ | | | | | | Improved support for OpenCL
| * Fixed the formatting of the codeGravatar Benoit Steiner2016-11-08
| |
| * #if EIGEN_EXCEPTION -> #ifdef EIGEN_EXCEPTIONS.Gravatar Luke Iwanski2016-11-08
| |
| * Fix for SYCL queue initialisation.Gravatar Luke Iwanski2016-11-08
| |
| * Use try/catch only when exceptions are enabled.Gravatar Luke Iwanski2016-11-08
| |
| * Converting all sycl buffers to uninitialised device only buffers; adding ↵Gravatar Mehdi Goli2016-11-08
| | | | | | | | memcpyHostToDevice and memcpyDeviceToHost on syclDevice; modifying all examples to obey the new rules; moving sycl queue creating to the device based on Benoit suggestion; removing the sycl specefic condition for returning m_result in TensorReduction.h according to Benoit suggestion.
* | Removed unnecessary statementGravatar Benoit Steiner2016-11-05
| |
| * Added missing includesGravatar Benoit Steiner2016-11-05
| |
* | Extend mpreal unit test to check LLT with complexes.Gravatar Gael Guennebaud2016-11-05
| |
| * Merged eigen/eigen into defaultGravatar Benoit Steiner2016-11-04
| |\ | |/ |/|
| * Removed the sycl include from Eigen/Core and moved it to ↵Gravatar Mehdi Goli2016-11-04
| | | | | | | | Unsupported/Eigen/CXX11/Tensor; added TensorReduction for sycl (full reduction and partial reduction); added TensorReduction test case for sycl (full reduction and partial reduction); fixed the tile size on TensorSyclRun.h based on the device max work group size;
* | Merged in benoitsteiner/opencl (pull request PR-244)Gravatar Benoit Steiner2016-11-02
|\| | | | | | | Disable vectorization on device only when compiling for sycl
| * Disable vectorization on device only when compiling for syclGravatar Benoit Steiner2016-11-02
| |
* | Don't call lgamma_r when compiling for an Apple device, since the function ↵Gravatar Benoit Steiner2016-11-02
| | | | | | | | isn't available on MacOS
* | Pulled latest updates from trunkGravatar Benoit Steiner2016-11-02
|\ \ | |/ |/|
| * Special functions require math.h: make sure it is included.Gravatar Benoit Steiner2016-11-02
| |
* | Merged in benoitsteiner/opencl (pull request PR-243)Gravatar Benoit Steiner2016-11-02
|\ \ | |/ |/| | | Fixed the ambiguity in callig make_tuple for sycl backend.
* | Merged eigen/eigen into defaultGravatar Rasmus Munk Larsen2016-11-01
|\ \
* | | Don't attempts to use lgamma_r for CUDA devices.Gravatar Rasmus Munk Larsen2016-11-01
| | | | | | | | | | | | Fix type in lgamma_impl<double>.
| | * Fixed the ambiguity in callig make_tuple for sycl backend.Gravatar Mehdi Goli2016-10-31
| |/