-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix floating-point overflow problem of tanh #355
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* Copyright (c) 2016 Baidu, Inc. All Rights Reserve. | ||
|
||
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. */ | ||
|
||
|
||
/** | ||
* This test is about floating point calculation exception. | ||
* Paddle catches FE_INVALID, FE DIVBYZERO and FE_OVERFLOW exceptions. | ||
* | ||
* Some exceptions occur in the middle of a set of formulas, | ||
* that can be circumvented by some tricks. | ||
* For example, | ||
* calculate tanh | ||
* b = 2.0 / (1.0 + exp(-2 * a)) - 1.0 | ||
* | ||
* If the result of (-2 * a) is too large, | ||
* a FE_OVERFLOW exception occurs when calculating exp. | ||
* But the result of tanh is no overflow problem, | ||
* so we can add some tricks to prevent exp calculate an excessive value. | ||
* | ||
*/ | ||
#include <fenv.h> | ||
#include <gtest/gtest.h> | ||
#include "paddle/math/Matrix.h" | ||
#include "paddle/utils/Excepts.h" | ||
|
||
using namespace paddle; // NOLINT | ||
|
||
void SetTensorValue(Matrix& matrix, real value) { | ||
int height = matrix.getHeight(); | ||
int width = matrix.getWidth(); | ||
int stride = matrix.getStride(); | ||
real* data = matrix.getData(); | ||
for (int i = 0; i < height; i++) { | ||
int j = rand() % width; // NOLINT | ||
if (typeid(matrix) == typeid(CpuMatrix)) { | ||
data[i * stride + j] = value; | ||
} else if (typeid(matrix) == typeid(GpuMatrix)) { | ||
hl_memcpy(&data[i * stride + j], &value, sizeof(real)); | ||
} else { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 加一个LOG(FATAL) << "Unexpected branch"吧 |
||
LOG(FATAL) << "should not reach here"; | ||
} | ||
} | ||
} | ||
|
||
template<typename Matrix> | ||
void testTanh(real illegal) { | ||
MatrixPtr A = std::make_shared<Matrix>(10, 10); | ||
MatrixPtr B = std::make_shared<Matrix>(10, 10); | ||
A->randomizeUniform(); | ||
B->randomizeUniform(); | ||
|
||
SetTensorValue(*A, illegal); | ||
|
||
A->tanh(*B); | ||
} | ||
|
||
template<typename Matrix> | ||
void testSigmoid(real illegal) { | ||
MatrixPtr A = std::make_shared<Matrix>(10, 10); | ||
MatrixPtr B = std::make_shared<Matrix>(10, 10); | ||
A->randomizeUniform(); | ||
B->randomizeUniform(); | ||
|
||
SetTensorValue(*A, illegal); | ||
|
||
A->sigmoid(*B); | ||
} | ||
|
||
TEST(fp, overflow) { | ||
for (auto illegal : {-90.0, 90.0}) { | ||
LOG(INFO) << " illegal=" << illegal; | ||
testTanh<CpuMatrix>(illegal); | ||
testSigmoid<CpuMatrix>(illegal); | ||
} | ||
} | ||
|
||
int main(int argc, char** argv) { | ||
testing::InitGoogleTest(&argc, argv); | ||
initMain(argc, argv); | ||
|
||
feenableexcept(FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW); | ||
return RUN_ALL_TESTS(); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CHECK还是保留一下吧,虽然大概率下没有错,不过有可能以后误修改了
EXP_MAX_INPUT
也能保证不会特别错。There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Paddle只检测
FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW
三种,errno对FE_UNDERFLOW
也会报错,paddle对其处理是FLUSH TO ZERO
,所以这里是不该留的。There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK