mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
[js/webgpu] exclude WebGPU reduce_log_sum_exp_* float64 test cases (#17472)
### Description as explained in the comments, tests "test_reduce_log_sum_exp_*" on opset17/opset18 are excluded because they use float64. They are passing now because they fallback to CPU. WebGPU does not support f64. This is one of the prerequisites for supporting IO binding for WebGPU buffer in onnxruntime-web. list of prerequisites PRs: https://github.com/microsoft/onnxruntime/pull/17465 https://github.com/microsoft/onnxruntime/pull/17469 https://github.com/microsoft/onnxruntime/pull/17470 https://github.com/microsoft/onnxruntime/pull/17472 (this one)
This commit is contained in:
parent
550293d9ad
commit
89da5a0108
1 changed files with 9 additions and 8 deletions
|
|
@ -904,14 +904,15 @@
|
|||
"test_reduce_log_sum_asc_axes",
|
||||
"test_reduce_log_sum_default",
|
||||
"test_reduce_log_sum_desc_axes",
|
||||
"test_reduce_log_sum_exp_default_axes_keepdims_example",
|
||||
"test_reduce_log_sum_exp_default_axes_keepdims_random",
|
||||
"test_reduce_log_sum_exp_do_not_keepdims_example",
|
||||
"test_reduce_log_sum_exp_do_not_keepdims_random",
|
||||
"test_reduce_log_sum_exp_keepdims_example",
|
||||
"test_reduce_log_sum_exp_keepdims_random",
|
||||
"test_reduce_log_sum_exp_negative_axes_keepdims_example",
|
||||
"test_reduce_log_sum_exp_negative_axes_keepdims_random",
|
||||
// tests "test_reduce_log_sum_exp_*" on opset17/opset18 are excluded because they use float64.
|
||||
"opset{7,8,9}/test_reduce_log_sum_exp_default_axes_keepdims_example",
|
||||
"opset{7,8,9}/test_reduce_log_sum_exp_default_axes_keepdims_random",
|
||||
"opset{7,8,9}/test_reduce_log_sum_exp_do_not_keepdims_example",
|
||||
"opset{7,8,9}/test_reduce_log_sum_exp_do_not_keepdims_random",
|
||||
"opset{7,8,9}/test_reduce_log_sum_exp_keepdims_example",
|
||||
"opset{7,8,9}/test_reduce_log_sum_exp_keepdims_random",
|
||||
"opset11/test_reduce_log_sum_exp_negative_axes_keepdims_example",
|
||||
"opset11/test_reduce_log_sum_exp_negative_axes_keepdims_random",
|
||||
"test_reduce_log_sum_negative_axes",
|
||||
"test_reduce_log_sum",
|
||||
"test_reduce_max_default_axes_keepdim_example",
|
||||
|
|
|
|||
Loading…
Reference in a new issue