mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-12 17:33:15 +08:00
Reverting asynchronous exec to Synchronous exec regarding random race condition.
This commit is contained in:
parent
c55ecfd820
commit
8b1c2108ba
@ -307,9 +307,12 @@ struct SyclDevice {
|
||||
sycl_queue().wait_and_throw(); //pass
|
||||
}
|
||||
|
||||
EIGEN_STRONG_INLINE void asynchronousExec() const {
|
||||
sycl_queue().throw_asynchronous();//pass
|
||||
}
|
||||
EIGEN_STRONG_INLINE void asynchronousExec() const {
|
||||
///FIXEDME:: currently there is a race condition regarding the asynch scheduler.
|
||||
//sycl_queue().throw_asynchronous();// does not pass. Temporarily disabled
|
||||
sycl_queue().wait_and_throw(); //pass
|
||||
|
||||
}
|
||||
// This function checks if the runtime recorded an error for the
|
||||
// underlying stream device.
|
||||
EIGEN_STRONG_INLINE bool ok() const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user