Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Revert constexpr test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wmaxey committed Mar 17, 2023
1 parent a34ae73 commit c96d720
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ int main(int, char**)
test<double>();
// CUDA treats long double as double
// test<long double>();
test_constexpr<int> ();
// test_constexpr<int>();

return 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ int main(int, char**)
test<double>();
// CUDA treats long double as double
// test<long double>();
test_constexpr<int> ();
// test_constexpr<int>();

return 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ int main(int, char**)
test<double>();
// CUDA treats long double as double
// test<long double>();
test_constexpr<int> ();
// test_constexpr<int>();

return 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ int main(int, char**)
test<double>();
// CUDA treats long double as double
// test<long double>();

test_constexpr<int> ();
// test_constexpr<int>();

return 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ int main(int, char**)
test<double>();
// CUDA treats long double as double
// test<long double>();
test_constexpr<int> ();
// test_constexpr<int>();

return 0;
}

0 comments on commit c96d720

Please sign in to comment.