mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-08 17:17:15 +00:00
fix csum and enable ut (#20355)
This commit is contained in:
parent
4c3fc26255
commit
a8a77ddfdc
2 changed files with 8 additions and 8 deletions
|
|
@ -54,7 +54,7 @@ const createCumsumProgramInfo =
|
|||
outputs: [{dims: inputShape, dataType: inputType}],
|
||||
dispatchGroup: {x: Math.ceil(outputSize / 64 /* workgroup size */)},
|
||||
programUniforms: [
|
||||
{type: DataType.uint32, data: outputSize}, {type: DataType.int32, data: axis},
|
||||
{type: DataType.uint32, data: outputSize}, {type: DataType.uint32, data: axis},
|
||||
...createTensorShapeVariables(inputShape, inputShape)
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -465,13 +465,13 @@
|
|||
"test_cos",
|
||||
"test_cosh_example",
|
||||
"test_cosh",
|
||||
// "test_cumsum_1d_exclusive",
|
||||
// "test_cumsum_1d_reverse_exclusive",
|
||||
// "test_cumsum_1d_reverse",
|
||||
// "test_cumsum_1d",
|
||||
// "test_cumsum_2d_axis_0",
|
||||
// "test_cumsum_2d_axis_1",
|
||||
// "test_cumsum_2d_negative_axis",
|
||||
"test_cumsum_1d_exclusive",
|
||||
"test_cumsum_1d_reverse_exclusive",
|
||||
"test_cumsum_1d_reverse",
|
||||
"test_cumsum_1d",
|
||||
"test_cumsum_2d_axis_0",
|
||||
"test_cumsum_2d_axis_1",
|
||||
"test_cumsum_2d_negative_axis",
|
||||
"test_depthtospace_crd_mode_example",
|
||||
"test_depthtospace_crd_mode",
|
||||
"test_depthtospace_dcr_mode",
|
||||
|
|
|
|||
Loading…
Reference in a new issue