From 70e173c77af193ce794d53f964f189f0c6046d25 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Thu, 10 Apr 2025 13:28:47 +0200 Subject: [PATCH] Update expected data type of input array in real ufunc --- dpctl/tensor/_elementwise_funcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpctl/tensor/_elementwise_funcs.py b/dpctl/tensor/_elementwise_funcs.py index e91cc9740d..46c44417d4 100644 --- a/dpctl/tensor/_elementwise_funcs.py +++ b/dpctl/tensor/_elementwise_funcs.py @@ -1653,7 +1653,7 @@ Args: x (usm_ndarray): - Input array, expected to have a numeric data type. + Input array. May have any data type. out (Union[usm_ndarray, None], optional): Output array to populate. Array must have the correct shape and the expected data type.