Update initial starting values

This commit is contained in:
Tom Deakin 2021-02-03 11:21:56 +00:00
parent 490af52147
commit 44e74b574b
2 changed files with 4 additions and 3 deletions

View File

@ -26,6 +26,7 @@ All notable changes to this project will be documented in this file.
- Reorder OpenCL objects in class so destructors are called in safe order.
- Ensure all OpenCL kernels are present in destructor.
- Normalise sum result by expected value to help false negative errors.
- Update starting values to support new kernel in all models on all devices.
### Removed
- Pre-building of kernels in SYCL version to ensure compatibility with SYCL 1.2.1.

View File

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