-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #265 from hvdijk/hardware-sqrt
Use @llvm.sqrt.* intrincs rather than rolling our own.
- Loading branch information
Showing
15 changed files
with
455 additions
and
469 deletions.
There are no files selected for viewing
71 changes: 0 additions & 71 deletions
71
modules/compiler/builtins/abacus/include/abacus/internal/check_surrounding_values.h
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
modules/compiler/builtins/abacus/include/abacus/internal/sqrt.h
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,29 @@ | ||
// Copyright (C) Codeplay Software Limited | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License") with LLVM | ||
// Exceptions; you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://github.com/codeplaysoftware/oneapi-construction-kit/blob/main/LICENSE.txt | ||
// | ||
// 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. | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#ifndef __ABACUS_INTERNAL_SQRT_H__ | ||
#define __ABACUS_INTERNAL_SQRT_H__ | ||
|
||
#include <abacus/abacus_config.h> | ||
|
||
namespace abacus { | ||
namespace internal { | ||
template <typename T> | ||
T sqrt(T); | ||
} // namespace internal | ||
} // namespace abacus | ||
|
||
#endif //__ABACUS_INTERNAL_SQRT_H__ |
156 changes: 0 additions & 156 deletions
156
modules/compiler/builtins/abacus/include/abacus/internal/sqrt_unsafe.h
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.