Skip to content

Commit

Permalink
modify atol and rtol
Browse files Browse the repository at this point in the history
  • Loading branch information
Zjq9409 committed Feb 21, 2022
1 parent 10bd404 commit 5d255b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/paddle/fluid/tests/unittests/test_eigh_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ def setUp(self):
np.random.seed(123)
self.x_np = np.random.random(self.x_shape).astype(self.dtype)
if (paddle.version.cuda() >= "11.6"):
self.rtol = 2e-6
self.atol = 2e-6
self.rtol = 5e-6
self.atol = 6e-5
else:
self.rtol = 1e-5
self.atol = 1e-5
Expand All @@ -86,8 +86,8 @@ def setUp(self):
self.init_input_data()
self.UPLO = 'L'
if (paddle.version.cuda() >= "11.6"):
self.rtol = 2e-6
self.atol = 2e-6
self.rtol = 5e-6
self.atol = 6e-5
else:
self.rtol = 1e-5
self.atol = 1e-5
Expand Down

1 comment on commit 5d255b1

@paddle-bot-old
Copy link

@paddle-bot-old paddle-bot-old bot commented on 5d255b1 Feb 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🕵️ CI failures summary

🔍 PR: #39568 Commit ID: 5d255b1 contains failed CI.

🔹 Failed: PR-CI-Windows-Inference

build_failed
2022-02-21 11:42:36 [1970/2025] Linking CXX executable paddle\fluid\inference\tests\api\test_analyzer_rnn2.exe
2022-02-21 11:42:36 Creating library paddle\fluid\inference\tests\api\test_analyzer_rnn2.lib and object paddle\fluid\inference\tests\api\test_analyzer_rnn2.exp
2022-02-21 11:42:36 [1971/2025] Linking CXX executable paddle\fluid\inference\tests\api\test_analyzer_capi_exp_ner.exe
2022-02-21 11:42:36 Creating library paddle\fluid\inference\tests\api\test_analyzer_capi_exp_ner.lib and object paddle\fluid\inference\tests\api\test_analyzer_capi_exp_ner.exp
2022-02-21 11:42:36 [1972/2025] Linking CXX executable paddle\fluid\inference\tests\api\test_analyzer_image_classification.exe
2022-02-21 11:42:36 Creating library paddle\fluid\inference\tests\api\test_analyzer_image_classification.lib and object paddle\fluid\inference\tests\api\test_analyzer_image_classification.exp
2022-02-21 11:42:36 [1973/2025] Linking CXX shared library paddle\fluid\pybind\paddle_pybind.dll
2022-02-21 11:42:36 Creating library paddle\fluid\pybind\paddle_pybind.lib and object paddle\fluid\pybind\paddle_pybind.exp
2022-02-21 11:42:36 ninja: build stopped: subcommand failed.
2022-02-21 11:42:36 7
2022-02-21 11:42:36 Build Paddle failed, will exit
2022-02-21 11:42:36 CI failed, try to upload built wheel.
2022-02-21 11:42:36 找不到文件 - *
2022-02-21 11:42:36 复制了 0 个文件
2022-02-21 11:42:36 文件名、目录名或卷标语法不正确。
2022-02-21 11:42:41 EXCODE: 7
2022-02-21 11:42:41 [INFO] start upload artifact: C:\home\workspace\output\.*
2022-02-21 11:42:42 [WARN] No matching file!

Please sign in to comment.