Revert "Update initial array values to ensure dot product works with the nstream kernel"

This reverts commit 5346e1226d.

Conflicts:
	CHANGELOG.md
This commit is contained in:
Tom Deakin 2021-02-03 10:14:58 +00:00
parent aefe5af18b
commit 210cfb7520
2 changed files with 3 additions and 4 deletions

View File

@ -25,7 +25,6 @@ All notable changes to this project will be documented in this file.
- Clang compiler OpenMP flags corrected for NVIDIA target. - Clang compiler OpenMP flags corrected for NVIDIA target.
- Reorder OpenCL objects in class so destructors are called in safe order. - Reorder OpenCL objects in class so destructors are called in safe order.
- Ensure all OpenCL kernels are present in destructor. - Ensure all OpenCL kernels are present in destructor.
- Initial values updated to support additional kernel.
### Removed ### Removed
- Pre-building of kernels in SYCL version to ensure compatibility with SYCL 1.2.1. - Pre-building of kernels in SYCL version to ensure compatibility with SYCL 1.2.1.

View File

@ -11,10 +11,10 @@
#include <string> #include <string>
// Array values // Array values
#define startA (1.0) #define startA (0.1)
#define startB (0.02) #define startB (0.2)
#define startC (0.0) #define startC (0.0)
#define startScalar (0.04) #define startScalar (0.4)
template <class T> template <class T>
class Stream class Stream