mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Adjusted precision in test
This commit is contained in:
parent
35a71506a5
commit
73faf623f2
2
contrib/fastops
vendored
2
contrib/fastops
vendored
@ -1 +1 @@
|
||||
Subproject commit b969b7aee07651248da8b7367b8e4338be8bca2a
|
||||
Subproject commit 3a7cd7a6271f011025441bea178e7729d155c36b
|
@ -1,4 +1,4 @@
|
||||
SELECT
|
||||
round(sigmoid(x), 6), round(sigmoid(toFloat32(x)), 6), round(sigmoid(toFloat64(x)), 6),
|
||||
round(tanh(x), 6), round(TANH(toFloat32(x)), 6), round(TANh(toFloat64(x)), 6)
|
||||
SELECT
|
||||
round(sigmoid(x), 5), round(sigmoid(toFloat32(x)), 5), round(sigmoid(toFloat64(x)), 5),
|
||||
round(tanh(x), 5), round(TANH(toFloat32(x)), 5), round(TANh(toFloat64(x)), 5)
|
||||
FROM (SELECT arrayJoin([-1, 0, 1]) AS x);
|
||||
|
Loading…
Reference in New Issue
Block a user