Browse Source

Merge pull request #4206 from martin-frbg/issue4201-2

Work around miscompilation of zdot_thunderx2t99 by the current NVIDIA HPC compiler
tags/v0.3.24
Martin Kroeker GitHub 2 years ago
parent
commit
9c4ae4d4fb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      kernel/arm64/zdot_thunderx2t99.c

+ 6
- 1
kernel/arm64/zdot_thunderx2t99.c View File

@@ -24,7 +24,12 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/

#ifdef __NVCOMPILER
#define NVCOMPVERS ( __NVCOMPILER_MAJOR__ * 100 + __NVCOMPILER_MINOR__ )
#if (NVCOMPVERS < 2309)
#pragma opt 1
#endif
#endif

#include "common.h"



Loading…
Cancel
Save