mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix bugs exposed by enabling GPU asserts.
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
ab8725d947
commit
17ae83a966
@@ -1100,9 +1100,9 @@ void test_gpu_erfc(const Scalar stddev)
|
||||
template <typename Scalar>
|
||||
void test_gpu_ndtri()
|
||||
{
|
||||
Tensor<Scalar, 1> in_x(8);
|
||||
Tensor<Scalar, 1> out(8);
|
||||
Tensor<Scalar, 1> expected_out(8);
|
||||
Tensor<Scalar, 1> in_x(9);
|
||||
Tensor<Scalar, 1> out(9);
|
||||
Tensor<Scalar, 1> expected_out(9);
|
||||
out.setZero();
|
||||
|
||||
in_x(0) = Scalar(1);
|
||||
|
||||
Reference in New Issue
Block a user