-
Notifications
You must be signed in to change notification settings - Fork 667
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix upsample sbp infer bug and add global test (#7884)
* fix reduce_sum scalar check bug * fix_unfold_tensor_sbp_and_add_global_test * refine * add_var_upsample_global_test * revert unfold_tensor_op.cpp * fix var bug about tail element handle * fix reshape infer error for 0-dim size * del code not belong to this branch * fix bicubic interpolate op cuda kernel bug, test success * fix bug * fix segement fault bug * make of_format Co-authored-by: BBuf <1182563586@qq.com> Co-authored-by: liufengwei0103 <2472937968@qq.com> Co-authored-by: Xiaoyu Zhang <35585791+BBuf@users.noreply.github.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c1ad80c
commit d3d7f2c
Showing
6 changed files
with
175 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 113 additions & 0 deletions
113
python/oneflow/test/modules/test_consistent_upsample.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
""" | ||
Copyright 2020 The OneFlow Authors. All rights reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
""" | ||
|
||
import unittest | ||
from collections import OrderedDict | ||
|
||
import numpy as np | ||
from oneflow.test_utils.test_util import GenArgList | ||
from oneflow.test_utils.automated_test_util import * | ||
|
||
import oneflow as flow | ||
import oneflow.unittest | ||
|
||
|
||
@autotest(n=1, auto_backward=True, check_graph=False) | ||
def _test_global_upsample2d_nearest(test_case, placement, sbp): | ||
x = random_tensor(ndim=3, dim0=8, dim1=16).to_global(placement, sbp) | ||
print(x) | ||
m = torch.nn.Upsample(scale_factor=random().to(int), mode="nearest",) | ||
y = m(x) | ||
return y | ||
|
||
|
||
@autotest(n=1, auto_backward=True, check_graph=False) | ||
def _test_global_upsample2d_linear(test_case, placement, sbp): | ||
x = random_tensor(ndim=3, dim0=8, dim1=16).to_global(placement, sbp) | ||
m = torch.nn.Upsample( | ||
scale_factor=random().to(int), mode="linear", align_corners=random_bool(), | ||
) | ||
y = m(x) | ||
return y | ||
|
||
|
||
@autotest(n=1, auto_backward=True, check_graph=False) | ||
def _test_global_upsample2d_bilinear(test_case, placement, sbp): | ||
x = random_tensor(ndim=4, dim0=8, dim1=16).to_global(placement, sbp) | ||
m = torch.nn.Upsample( | ||
scale_factor=random().to(int), mode="bilinear", align_corners=random_bool(), | ||
) | ||
y = m(x) | ||
return y | ||
|
||
|
||
@autotest(n=1, auto_backward=True, check_graph=False) | ||
def _test_global_upsample2d_bicubic(test_case, placement, sbp): | ||
x = random_tensor(ndim=4, dim0=8, dim1=16).to_global(placement, sbp) | ||
m = torch.nn.Upsample( | ||
scale_factor=random().to(int), mode="bicubic", align_corners=random_bool(), | ||
) | ||
y = m(x) | ||
return y | ||
|
||
|
||
@autotest(n=1, auto_backward=True, check_graph=False) | ||
def _test_global_upsample2d_trilinear(test_case, placement, sbp): | ||
x = random_tensor(ndim=5, dim0=8, dim1=16).to_global(placement, sbp) | ||
m = torch.nn.Upsample( | ||
scale_factor=random().to(int), mode="trilinear", align_corners=random_bool(), | ||
) | ||
y = m(x) | ||
return y | ||
|
||
|
||
class TestGlobalUpsample2d(flow.unittest.TestCase): | ||
@unittest.skip( | ||
"The nearest interpolate operation in pytorch has bug, https://github.com/pytorch/pytorch/issues/65200" | ||
) | ||
@globaltest | ||
def test_global_upsample2d_nearest(test_case): | ||
for placement in all_placement(): | ||
for sbp in all_sbp(placement, max_dim=1): | ||
_test_global_upsample2d_nearest(test_case, placement, sbp) | ||
|
||
@globaltest | ||
def test_global_upsample2d_linear(test_case): | ||
for placement in all_placement(): | ||
for sbp in all_sbp(placement, max_dim=1): | ||
_test_global_upsample2d_linear(test_case, placement, sbp) | ||
|
||
@globaltest | ||
def test_global_upsample2d_bilinear(test_case): | ||
for placement in all_placement(): | ||
for sbp in all_sbp(placement, max_dim=1): | ||
_test_global_upsample2d_bilinear(test_case, placement, sbp) | ||
|
||
@globaltest | ||
def test_global_upsample2d_bicubic(test_case): | ||
for placement in all_placement(): | ||
for sbp in all_sbp(placement, max_dim=1): | ||
_test_global_upsample2d_bicubic(test_case, placement, sbp) | ||
|
||
@globaltest | ||
def test_global_upsample2d_trilinear(test_case): | ||
for placement in all_placement(): | ||
for sbp in all_sbp(placement, max_dim=1): | ||
_test_global_upsample2d_trilinear(test_case, placement, sbp) | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters