-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flush denormals to zero, test=develop
- Loading branch information
1 parent
0b74428
commit 1f69360
Showing
6 changed files
with
121 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// Copyright (c) 2020 PaddlePaddle 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. | ||
|
||
#include "paddle/fluid/platform/denormal.h" | ||
#include <tuple> | ||
#include <utility> | ||
|
||
// If we're on gcc 4.8 or older, there's a known bug that prevents the use of | ||
// intrinsics when the architecture is not defined in the flags. See | ||
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57202 | ||
#if !defined(__SSE3__) && !defined(__clang__) && \ | ||
(defined(__GNUC__) && (__GNUC__ < 4) || \ | ||
((__GNUC__ == 4) && (__GNUC_MINOR__ < 9))) | ||
#define GCC_WITHOUT_INTRINSICS | ||
#endif | ||
|
||
// Only try to use SSE3 instructions if we're on an x86 platform, and it's not | ||
// mobile, and we're not on a known bad gcc version. | ||
#if !defined(GCC_WITHOUT_INTRINSICS) | ||
#define DENORM_USE_INTRINSICS | ||
#include <pmmintrin.h> | ||
#endif | ||
|
||
namespace paddle { | ||
namespace platform { | ||
|
||
static void SetDenormalState(bool flush_zero_mode, bool denormals_zero_mode) { | ||
#ifdef DENORM_USE_INTRINSICS | ||
#ifdef PADDLE_WITH_SSE3 | ||
// Restore flags | ||
_MM_SET_FLUSH_ZERO_MODE(flush_zero_mode ? _MM_FLUSH_ZERO_ON | ||
: _MM_FLUSH_ZERO_OFF); | ||
_MM_SET_DENORMALS_ZERO_MODE(denormals_zero_mode ? _MM_DENORMALS_ZERO_ON | ||
: _MM_DENORMALS_ZERO_OFF); | ||
#endif | ||
#endif | ||
} | ||
|
||
static std::pair<bool, bool> GetDenormalState() { | ||
#ifdef DENORM_USE_INTRINSICS | ||
#ifdef PADDLE_WITH_SSE3 | ||
// Save existing flags | ||
bool flush_zero_mode = _MM_GET_FLUSH_ZERO_MODE() == _MM_FLUSH_ZERO_ON; | ||
bool denormals_zero_mode = | ||
_MM_GET_DENORMALS_ZERO_MODE() == _MM_DENORMALS_ZERO_ON; | ||
return {flush_zero_mode, denormals_zero_mode}; | ||
#endif | ||
#endif | ||
return {false, false}; | ||
} | ||
|
||
ScopedRestoreFlushDenormalState::ScopedRestoreFlushDenormalState() { | ||
std::tie(flush_zero_mode_, denormals_zero_mode_) = GetDenormalState(); | ||
} | ||
|
||
ScopedRestoreFlushDenormalState::~ScopedRestoreFlushDenormalState() { | ||
SetDenormalState(flush_zero_mode_, denormals_zero_mode_); | ||
} | ||
|
||
ScopedFlushDenormal::ScopedFlushDenormal() { SetDenormalState(true, true); } | ||
} // namespace platform | ||
} // namespace paddle |
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,42 @@ | ||
// Copyright (c) 2020 PaddlePaddle 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. | ||
|
||
#pragma once | ||
|
||
#include "paddle/fluid/platform/macros.h" | ||
|
||
namespace paddle { | ||
namespace platform { | ||
|
||
class ScopedRestoreFlushDenormalState { | ||
public: | ||
ScopedRestoreFlushDenormalState(); | ||
~ScopedRestoreFlushDenormalState(); | ||
|
||
private: | ||
bool flush_zero_mode_; | ||
bool denormals_zero_mode_; | ||
DISABLE_COPY_AND_ASSIGN(ScopedRestoreFlushDenormalState); | ||
}; | ||
|
||
class ScopedFlushDenormal { | ||
public: | ||
ScopedFlushDenormal(); | ||
|
||
private: | ||
ScopedRestoreFlushDenormalState restore_; | ||
DISABLE_COPY_AND_ASSIGN(ScopedFlushDenormal); | ||
}; | ||
} // namespace platform | ||
} // namespace paddle |