mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-03 23:49:44 +00:00
Accomodating PR comments.
This commit is contained in:
parent
e7e801b45e
commit
e75bde2e97
1 changed files with 0 additions and 2 deletions
|
|
@ -9,7 +9,6 @@ namespace test {
|
|||
|
||||
TEST(ContribOpTest, ExpandDims_0) {
|
||||
OpTester test("ExpandDims", 1, onnxruntime::kMSDomain);
|
||||
test.AddShapeToTensorData(true); // TODO: re-enable shape inference test
|
||||
test.AddInput<float>("X", {2, 3}, std::vector<float>(6, 1.0f));
|
||||
test.AddInput<int32_t>("axis", {}, {-1});
|
||||
test.AddOutput<float>("Y", {2, 3, 1}, std::vector<float>(6, 1.0f));
|
||||
|
|
@ -18,7 +17,6 @@ TEST(ContribOpTest, ExpandDims_0) {
|
|||
|
||||
TEST(ContribOpTest, ExpandDims_1) {
|
||||
OpTester test("ExpandDims", 1, onnxruntime::kMSDomain);
|
||||
test.AddShapeToTensorData(true); // TODO: re-enable shape inference test
|
||||
test.AddInput<float>("X", {2, 3}, std::vector<float>(6, 1.0f));
|
||||
test.AddInput<int32_t>("axis", {}, {1});
|
||||
test.AddOutput<float>("Y", {2, 1, 3}, std::vector<float>(6, 1.0f));
|
||||
|
|
|
|||
Loading…
Reference in a new issue