* [PATCH v2] benchtests: Add more benchtests for rounding functions.
@ 2024-01-22 2:16 Junxian Zhu
2024-01-25 12:07 ` Adhemerval Zanella Netto
0 siblings, 1 reply; 4+ messages in thread
From: Junxian Zhu @ 2024-01-22 2:16 UTC (permalink / raw)
To: libc-alpha; +Cc: Junxian Zhu
From: Junxian Zhu <zhujunxian@oss.cipunited.com>
This patch adds more benchtests for rounding functions.
The double inputs are copied from trunc-inputs, the float inputs are copied from truncf-inputs. and the rintf is copied from rint-inputs.
---
benchtests/Makefile | 11 +++++++++++
benchtests/ceil-inputs | 22 ++++++++++++++++++++++
benchtests/ceilf-inputs | 21 +++++++++++++++++++++
benchtests/floor-inputs | 22 ++++++++++++++++++++++
benchtests/floorf-inputs | 21 +++++++++++++++++++++
benchtests/llrint-inputs | 22 ++++++++++++++++++++++
benchtests/llrintf-inputs | 21 +++++++++++++++++++++
benchtests/lrint-inputs | 22 ++++++++++++++++++++++
benchtests/lrintf-inputs | 21 +++++++++++++++++++++
benchtests/nearbyint-inputs | 22 ++++++++++++++++++++++
benchtests/nearbyintf-inputs | 21 +++++++++++++++++++++
benchtests/rintf-inputs | 7 +++++++
12 files changed, 233 insertions(+)
create mode 100644 benchtests/ceil-inputs
create mode 100644 benchtests/ceilf-inputs
create mode 100644 benchtests/floor-inputs
create mode 100644 benchtests/floorf-inputs
create mode 100644 benchtests/llrint-inputs
create mode 100644 benchtests/llrintf-inputs
create mode 100644 benchtests/lrint-inputs
create mode 100644 benchtests/lrintf-inputs
create mode 100644 benchtests/nearbyint-inputs
create mode 100644 benchtests/nearbyintf-inputs
create mode 100644 benchtests/rintf-inputs
diff --git a/benchtests/Makefile b/benchtests/Makefile
index 4fb9bae023..05b8751c55 100644
--- a/benchtests/Makefile
+++ b/benchtests/Makefile
@@ -32,6 +32,8 @@ bench-math := \
atan2 \
atanh \
cbrt \
+ ceil \
+ ceilf \
cos \
cosf \
cosh \
@@ -44,6 +46,8 @@ bench-math := \
exp2f \
expf \
expm1 \
+ floor \
+ floorf \
fmax \
fmaxf \
fmin \
@@ -60,6 +64,8 @@ bench-math := \
j0 \
j1 \
lgamma \
+ llrint \
+ llrintf \
log \
log10 \
log1p \
@@ -68,10 +74,15 @@ bench-math := \
logb \
logbf \
logf \
+ lrint \
+ lrintf \
modf \
+ nearbyint \
+ nearbyintf \
pow \
powf \
rint \
+ rintf \
roundeven \
roundevenf \
sin \
diff --git a/benchtests/ceil-inputs b/benchtests/ceil-inputs
new file mode 100644
index 0000000000..49ff407a6a
--- /dev/null
+++ b/benchtests/ceil-inputs
@@ -0,0 +1,22 @@
+## args: double
+## ret: double
+## includes: math.h
+0.0
+-0.0
+0.001
+-0.001
+0.5
+-0.5
+0.999
+-0.999
+1.0
+-1.0
+1.001
+-1.001
+123.5
+-123.5
+12345.1
+-1000000.1
+1e15
+-1e30
+1e200
diff --git a/benchtests/ceilf-inputs b/benchtests/ceilf-inputs
new file mode 100644
index 0000000000..c37c5dacba
--- /dev/null
+++ b/benchtests/ceilf-inputs
@@ -0,0 +1,21 @@
+## args: float
+## ret: float
+## includes: math.h
+0.0f
+-0.0f
+0.001f
+-0.001f
+0.5f
+-0.5f
+0.999f
+-0.999f
+1.0f
+-1.0f
+1.001f
+-1.001f
+123.5f
+-123.5f
+12345.1f
+-1000000.5f
+1e15f
+-1e30f
diff --git a/benchtests/floor-inputs b/benchtests/floor-inputs
new file mode 100644
index 0000000000..49ff407a6a
--- /dev/null
+++ b/benchtests/floor-inputs
@@ -0,0 +1,22 @@
+## args: double
+## ret: double
+## includes: math.h
+0.0
+-0.0
+0.001
+-0.001
+0.5
+-0.5
+0.999
+-0.999
+1.0
+-1.0
+1.001
+-1.001
+123.5
+-123.5
+12345.1
+-1000000.1
+1e15
+-1e30
+1e200
diff --git a/benchtests/floorf-inputs b/benchtests/floorf-inputs
new file mode 100644
index 0000000000..c37c5dacba
--- /dev/null
+++ b/benchtests/floorf-inputs
@@ -0,0 +1,21 @@
+## args: float
+## ret: float
+## includes: math.h
+0.0f
+-0.0f
+0.001f
+-0.001f
+0.5f
+-0.5f
+0.999f
+-0.999f
+1.0f
+-1.0f
+1.001f
+-1.001f
+123.5f
+-123.5f
+12345.1f
+-1000000.5f
+1e15f
+-1e30f
diff --git a/benchtests/llrint-inputs b/benchtests/llrint-inputs
new file mode 100644
index 0000000000..49ff407a6a
--- /dev/null
+++ b/benchtests/llrint-inputs
@@ -0,0 +1,22 @@
+## args: double
+## ret: double
+## includes: math.h
+0.0
+-0.0
+0.001
+-0.001
+0.5
+-0.5
+0.999
+-0.999
+1.0
+-1.0
+1.001
+-1.001
+123.5
+-123.5
+12345.1
+-1000000.1
+1e15
+-1e30
+1e200
diff --git a/benchtests/llrintf-inputs b/benchtests/llrintf-inputs
new file mode 100644
index 0000000000..c37c5dacba
--- /dev/null
+++ b/benchtests/llrintf-inputs
@@ -0,0 +1,21 @@
+## args: float
+## ret: float
+## includes: math.h
+0.0f
+-0.0f
+0.001f
+-0.001f
+0.5f
+-0.5f
+0.999f
+-0.999f
+1.0f
+-1.0f
+1.001f
+-1.001f
+123.5f
+-123.5f
+12345.1f
+-1000000.5f
+1e15f
+-1e30f
diff --git a/benchtests/lrint-inputs b/benchtests/lrint-inputs
new file mode 100644
index 0000000000..49ff407a6a
--- /dev/null
+++ b/benchtests/lrint-inputs
@@ -0,0 +1,22 @@
+## args: double
+## ret: double
+## includes: math.h
+0.0
+-0.0
+0.001
+-0.001
+0.5
+-0.5
+0.999
+-0.999
+1.0
+-1.0
+1.001
+-1.001
+123.5
+-123.5
+12345.1
+-1000000.1
+1e15
+-1e30
+1e200
diff --git a/benchtests/lrintf-inputs b/benchtests/lrintf-inputs
new file mode 100644
index 0000000000..c37c5dacba
--- /dev/null
+++ b/benchtests/lrintf-inputs
@@ -0,0 +1,21 @@
+## args: float
+## ret: float
+## includes: math.h
+0.0f
+-0.0f
+0.001f
+-0.001f
+0.5f
+-0.5f
+0.999f
+-0.999f
+1.0f
+-1.0f
+1.001f
+-1.001f
+123.5f
+-123.5f
+12345.1f
+-1000000.5f
+1e15f
+-1e30f
diff --git a/benchtests/nearbyint-inputs b/benchtests/nearbyint-inputs
new file mode 100644
index 0000000000..49ff407a6a
--- /dev/null
+++ b/benchtests/nearbyint-inputs
@@ -0,0 +1,22 @@
+## args: double
+## ret: double
+## includes: math.h
+0.0
+-0.0
+0.001
+-0.001
+0.5
+-0.5
+0.999
+-0.999
+1.0
+-1.0
+1.001
+-1.001
+123.5
+-123.5
+12345.1
+-1000000.1
+1e15
+-1e30
+1e200
diff --git a/benchtests/nearbyintf-inputs b/benchtests/nearbyintf-inputs
new file mode 100644
index 0000000000..c37c5dacba
--- /dev/null
+++ b/benchtests/nearbyintf-inputs
@@ -0,0 +1,21 @@
+## args: float
+## ret: float
+## includes: math.h
+0.0f
+-0.0f
+0.001f
+-0.001f
+0.5f
+-0.5f
+0.999f
+-0.999f
+1.0f
+-1.0f
+1.001f
+-1.001f
+123.5f
+-123.5f
+12345.1f
+-1000000.5f
+1e15f
+-1e30f
diff --git a/benchtests/rintf-inputs b/benchtests/rintf-inputs
new file mode 100644
index 0000000000..f7c6f06789
--- /dev/null
+++ b/benchtests/rintf-inputs
@@ -0,0 +1,7 @@
+## args: float
+## ret: float
+## includes: math.h
+78.5
+-78.5
+4503599627370497.0
+-4503599627370497.0
--
2.43.0.windows.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] benchtests: Add more benchtests for rounding functions.
2024-01-22 2:16 [PATCH v2] benchtests: Add more benchtests for rounding functions Junxian Zhu
@ 2024-01-25 12:07 ` Adhemerval Zanella Netto
2024-01-25 13:22 ` Junxian Zhu
0 siblings, 1 reply; 4+ messages in thread
From: Adhemerval Zanella Netto @ 2024-01-25 12:07 UTC (permalink / raw)
To: Junxian Zhu, libc-alpha
On 21/01/24 23:16, Junxian Zhu wrote:
> From: Junxian Zhu <zhujunxian@oss.cipunited.com>
>
> This patch adds more benchtests for rounding functions.
> The double inputs are copied from trunc-inputs, the float inputs are copied from truncf-inputs. and the rintf is copied from rint-inputs.
LGTM, thanks.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
> ---
> benchtests/Makefile | 11 +++++++++++
> benchtests/ceil-inputs | 22 ++++++++++++++++++++++
> benchtests/ceilf-inputs | 21 +++++++++++++++++++++
> benchtests/floor-inputs | 22 ++++++++++++++++++++++
> benchtests/floorf-inputs | 21 +++++++++++++++++++++
> benchtests/llrint-inputs | 22 ++++++++++++++++++++++
> benchtests/llrintf-inputs | 21 +++++++++++++++++++++
> benchtests/lrint-inputs | 22 ++++++++++++++++++++++
> benchtests/lrintf-inputs | 21 +++++++++++++++++++++
> benchtests/nearbyint-inputs | 22 ++++++++++++++++++++++
> benchtests/nearbyintf-inputs | 21 +++++++++++++++++++++
> benchtests/rintf-inputs | 7 +++++++
> 12 files changed, 233 insertions(+)
> create mode 100644 benchtests/ceil-inputs
> create mode 100644 benchtests/ceilf-inputs
> create mode 100644 benchtests/floor-inputs
> create mode 100644 benchtests/floorf-inputs
> create mode 100644 benchtests/llrint-inputs
> create mode 100644 benchtests/llrintf-inputs
> create mode 100644 benchtests/lrint-inputs
> create mode 100644 benchtests/lrintf-inputs
> create mode 100644 benchtests/nearbyint-inputs
> create mode 100644 benchtests/nearbyintf-inputs
> create mode 100644 benchtests/rintf-inputs
>
> diff --git a/benchtests/Makefile b/benchtests/Makefile
> index 4fb9bae023..05b8751c55 100644
> --- a/benchtests/Makefile
> +++ b/benchtests/Makefile
> @@ -32,6 +32,8 @@ bench-math := \
> atan2 \
> atanh \
> cbrt \
> + ceil \
> + ceilf \
> cos \
> cosf \
> cosh \
> @@ -44,6 +46,8 @@ bench-math := \
> exp2f \
> expf \
> expm1 \
> + floor \
> + floorf \
> fmax \
> fmaxf \
> fmin \
> @@ -60,6 +64,8 @@ bench-math := \
> j0 \
> j1 \
> lgamma \
> + llrint \
> + llrintf \
> log \
> log10 \
> log1p \
> @@ -68,10 +74,15 @@ bench-math := \
> logb \
> logbf \
> logf \
> + lrint \
> + lrintf \
> modf \
> + nearbyint \
> + nearbyintf \
> pow \
> powf \
> rint \
> + rintf \
> roundeven \
> roundevenf \
> sin \
> diff --git a/benchtests/ceil-inputs b/benchtests/ceil-inputs
> new file mode 100644
> index 0000000000..49ff407a6a
> --- /dev/null
> +++ b/benchtests/ceil-inputs
> @@ -0,0 +1,22 @@
> +## args: double
> +## ret: double
> +## includes: math.h
> +0.0
> +-0.0
> +0.001
> +-0.001
> +0.5
> +-0.5
> +0.999
> +-0.999
> +1.0
> +-1.0
> +1.001
> +-1.001
> +123.5
> +-123.5
> +12345.1
> +-1000000.1
> +1e15
> +-1e30
> +1e200
> diff --git a/benchtests/ceilf-inputs b/benchtests/ceilf-inputs
> new file mode 100644
> index 0000000000..c37c5dacba
> --- /dev/null
> +++ b/benchtests/ceilf-inputs
> @@ -0,0 +1,21 @@
> +## args: float
> +## ret: float
> +## includes: math.h
> +0.0f
> +-0.0f
> +0.001f
> +-0.001f
> +0.5f
> +-0.5f
> +0.999f
> +-0.999f
> +1.0f
> +-1.0f
> +1.001f
> +-1.001f
> +123.5f
> +-123.5f
> +12345.1f
> +-1000000.5f
> +1e15f
> +-1e30f
> diff --git a/benchtests/floor-inputs b/benchtests/floor-inputs
> new file mode 100644
> index 0000000000..49ff407a6a
> --- /dev/null
> +++ b/benchtests/floor-inputs
> @@ -0,0 +1,22 @@
> +## args: double
> +## ret: double
> +## includes: math.h
> +0.0
> +-0.0
> +0.001
> +-0.001
> +0.5
> +-0.5
> +0.999
> +-0.999
> +1.0
> +-1.0
> +1.001
> +-1.001
> +123.5
> +-123.5
> +12345.1
> +-1000000.1
> +1e15
> +-1e30
> +1e200
> diff --git a/benchtests/floorf-inputs b/benchtests/floorf-inputs
> new file mode 100644
> index 0000000000..c37c5dacba
> --- /dev/null
> +++ b/benchtests/floorf-inputs
> @@ -0,0 +1,21 @@
> +## args: float
> +## ret: float
> +## includes: math.h
> +0.0f
> +-0.0f
> +0.001f
> +-0.001f
> +0.5f
> +-0.5f
> +0.999f
> +-0.999f
> +1.0f
> +-1.0f
> +1.001f
> +-1.001f
> +123.5f
> +-123.5f
> +12345.1f
> +-1000000.5f
> +1e15f
> +-1e30f
> diff --git a/benchtests/llrint-inputs b/benchtests/llrint-inputs
> new file mode 100644
> index 0000000000..49ff407a6a
> --- /dev/null
> +++ b/benchtests/llrint-inputs
> @@ -0,0 +1,22 @@
> +## args: double
> +## ret: double
> +## includes: math.h
> +0.0
> +-0.0
> +0.001
> +-0.001
> +0.5
> +-0.5
> +0.999
> +-0.999
> +1.0
> +-1.0
> +1.001
> +-1.001
> +123.5
> +-123.5
> +12345.1
> +-1000000.1
> +1e15
> +-1e30
> +1e200
> diff --git a/benchtests/llrintf-inputs b/benchtests/llrintf-inputs
> new file mode 100644
> index 0000000000..c37c5dacba
> --- /dev/null
> +++ b/benchtests/llrintf-inputs
> @@ -0,0 +1,21 @@
> +## args: float
> +## ret: float
> +## includes: math.h
> +0.0f
> +-0.0f
> +0.001f
> +-0.001f
> +0.5f
> +-0.5f
> +0.999f
> +-0.999f
> +1.0f
> +-1.0f
> +1.001f
> +-1.001f
> +123.5f
> +-123.5f
> +12345.1f
> +-1000000.5f
> +1e15f
> +-1e30f
> diff --git a/benchtests/lrint-inputs b/benchtests/lrint-inputs
> new file mode 100644
> index 0000000000..49ff407a6a
> --- /dev/null
> +++ b/benchtests/lrint-inputs
> @@ -0,0 +1,22 @@
> +## args: double
> +## ret: double
> +## includes: math.h
> +0.0
> +-0.0
> +0.001
> +-0.001
> +0.5
> +-0.5
> +0.999
> +-0.999
> +1.0
> +-1.0
> +1.001
> +-1.001
> +123.5
> +-123.5
> +12345.1
> +-1000000.1
> +1e15
> +-1e30
> +1e200
> diff --git a/benchtests/lrintf-inputs b/benchtests/lrintf-inputs
> new file mode 100644
> index 0000000000..c37c5dacba
> --- /dev/null
> +++ b/benchtests/lrintf-inputs
> @@ -0,0 +1,21 @@
> +## args: float
> +## ret: float
> +## includes: math.h
> +0.0f
> +-0.0f
> +0.001f
> +-0.001f
> +0.5f
> +-0.5f
> +0.999f
> +-0.999f
> +1.0f
> +-1.0f
> +1.001f
> +-1.001f
> +123.5f
> +-123.5f
> +12345.1f
> +-1000000.5f
> +1e15f
> +-1e30f
> diff --git a/benchtests/nearbyint-inputs b/benchtests/nearbyint-inputs
> new file mode 100644
> index 0000000000..49ff407a6a
> --- /dev/null
> +++ b/benchtests/nearbyint-inputs
> @@ -0,0 +1,22 @@
> +## args: double
> +## ret: double
> +## includes: math.h
> +0.0
> +-0.0
> +0.001
> +-0.001
> +0.5
> +-0.5
> +0.999
> +-0.999
> +1.0
> +-1.0
> +1.001
> +-1.001
> +123.5
> +-123.5
> +12345.1
> +-1000000.1
> +1e15
> +-1e30
> +1e200
> diff --git a/benchtests/nearbyintf-inputs b/benchtests/nearbyintf-inputs
> new file mode 100644
> index 0000000000..c37c5dacba
> --- /dev/null
> +++ b/benchtests/nearbyintf-inputs
> @@ -0,0 +1,21 @@
> +## args: float
> +## ret: float
> +## includes: math.h
> +0.0f
> +-0.0f
> +0.001f
> +-0.001f
> +0.5f
> +-0.5f
> +0.999f
> +-0.999f
> +1.0f
> +-1.0f
> +1.001f
> +-1.001f
> +123.5f
> +-123.5f
> +12345.1f
> +-1000000.5f
> +1e15f
> +-1e30f
> diff --git a/benchtests/rintf-inputs b/benchtests/rintf-inputs
> new file mode 100644
> index 0000000000..f7c6f06789
> --- /dev/null
> +++ b/benchtests/rintf-inputs
> @@ -0,0 +1,7 @@
> +## args: float
> +## ret: float
> +## includes: math.h
> +78.5
> +-78.5
> +4503599627370497.0
> +-4503599627370497.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] benchtests: Add more benchtests for rounding functions.
2024-01-25 12:07 ` Adhemerval Zanella Netto
@ 2024-01-25 13:22 ` Junxian Zhu
2024-01-25 14:24 ` Adhemerval Zanella Netto
0 siblings, 1 reply; 4+ messages in thread
From: Junxian Zhu @ 2024-01-25 13:22 UTC (permalink / raw)
To: Adhemerval Zanella Netto, libc-alpha
在 2024/1/25 20:07, Adhemerval Zanella Netto 写道:
>
> On 21/01/24 23:16, Junxian Zhu wrote:
>> From: Junxian Zhu <zhujunxian@oss.cipunited.com>
>>
>> This patch adds more benchtests for rounding functions.
>> The double inputs are copied from trunc-inputs, the float inputs are copied from truncf-inputs. and the rintf is copied from rint-inputs.
> LGTM, thanks.
>
> Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
>
>> ---
>> benchtests/Makefile | 11 +++++++++++
>> benchtests/ceil-inputs | 22 ++++++++++++++++++++++
>> benchtests/ceilf-inputs | 21 +++++++++++++++++++++
>> benchtests/floor-inputs | 22 ++++++++++++++++++++++
>> benchtests/floorf-inputs | 21 +++++++++++++++++++++
>> benchtests/llrint-inputs | 22 ++++++++++++++++++++++
>> benchtests/llrintf-inputs | 21 +++++++++++++++++++++
>> benchtests/lrint-inputs | 22 ++++++++++++++++++++++
>> benchtests/lrintf-inputs | 21 +++++++++++++++++++++
>> benchtests/nearbyint-inputs | 22 ++++++++++++++++++++++
>> benchtests/nearbyintf-inputs | 21 +++++++++++++++++++++
>> benchtests/rintf-inputs | 7 +++++++
>> 12 files changed, 233 insertions(+)
>> create mode 100644 benchtests/ceil-inputs
>> create mode 100644 benchtests/ceilf-inputs
>> create mode 100644 benchtests/floor-inputs
>> create mode 100644 benchtests/floorf-inputs
>> create mode 100644 benchtests/llrint-inputs
>> create mode 100644 benchtests/llrintf-inputs
>> create mode 100644 benchtests/lrint-inputs
>> create mode 100644 benchtests/lrintf-inputs
>> create mode 100644 benchtests/nearbyint-inputs
>> create mode 100644 benchtests/nearbyintf-inputs
>> create mode 100644 benchtests/rintf-inputs
Thanks for your review. Can you push it into master please? I have no
permission to do that.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] benchtests: Add more benchtests for rounding functions.
2024-01-25 13:22 ` Junxian Zhu
@ 2024-01-25 14:24 ` Adhemerval Zanella Netto
0 siblings, 0 replies; 4+ messages in thread
From: Adhemerval Zanella Netto @ 2024-01-25 14:24 UTC (permalink / raw)
To: Junxian Zhu, libc-alpha
On 25/01/24 10:22, Junxian Zhu wrote:
> 在 2024/1/25 20:07, Adhemerval Zanella Netto 写道:
>>
>> On 21/01/24 23:16, Junxian Zhu wrote:
>>> From: Junxian Zhu <zhujunxian@oss.cipunited.com>
>>>
>>> This patch adds more benchtests for rounding functions.
>>> The double inputs are copied from trunc-inputs, the float inputs are copied from truncf-inputs. and the rintf is copied from rint-inputs.
>> LGTM, thanks.
>>
>> Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
>>
>>> ---
>>> benchtests/Makefile | 11 +++++++++++
>>> benchtests/ceil-inputs | 22 ++++++++++++++++++++++
>>> benchtests/ceilf-inputs | 21 +++++++++++++++++++++
>>> benchtests/floor-inputs | 22 ++++++++++++++++++++++
>>> benchtests/floorf-inputs | 21 +++++++++++++++++++++
>>> benchtests/llrint-inputs | 22 ++++++++++++++++++++++
>>> benchtests/llrintf-inputs | 21 +++++++++++++++++++++
>>> benchtests/lrint-inputs | 22 ++++++++++++++++++++++
>>> benchtests/lrintf-inputs | 21 +++++++++++++++++++++
>>> benchtests/nearbyint-inputs | 22 ++++++++++++++++++++++
>>> benchtests/nearbyintf-inputs | 21 +++++++++++++++++++++
>>> benchtests/rintf-inputs | 7 +++++++
>>> 12 files changed, 233 insertions(+)
>>> create mode 100644 benchtests/ceil-inputs
>>> create mode 100644 benchtests/ceilf-inputs
>>> create mode 100644 benchtests/floor-inputs
>>> create mode 100644 benchtests/floorf-inputs
>>> create mode 100644 benchtests/llrint-inputs
>>> create mode 100644 benchtests/llrintf-inputs
>>> create mode 100644 benchtests/lrint-inputs
>>> create mode 100644 benchtests/lrintf-inputs
>>> create mode 100644 benchtests/nearbyint-inputs
>>> create mode 100644 benchtests/nearbyintf-inputs
>>> create mode 100644 benchtests/rintf-inputs
>
>
> Thanks for your review. Can you push it into master please? I have no
> permission to do that.
I will add on my backlog for 2.40.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-25 14:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-22 2:16 [PATCH v2] benchtests: Add more benchtests for rounding functions Junxian Zhu
2024-01-25 12:07 ` Adhemerval Zanella Netto
2024-01-25 13:22 ` Junxian Zhu
2024-01-25 14:24 ` Adhemerval Zanella Netto
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).