else:
env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel'])
+if cpp_compiler == 'g++':
+ # Don't strip comments that could include markers
+ env.Append(CXXFLAGS = ['-C'])
+
if env['cppthreads']:
env.Append(CPPDEFINES = [('ARM_COMPUTE_CPP_SCHEDULER', 1)])
#include "src/core/helpers/AutoConfiguration.h"
#include "src/core/helpers/WindowHelpers.h"
#include "support/StringSupport.h"
+#include "support/ToolchainSupport.h"
#include <cmath>
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+#include "support/ToolchainSupport.h"
+
#include <cmath>
#include <limits>
-#ifndef M_PI
-#define M_PI (3.14159265358979323846)
-#endif // M_PI
-
namespace arm_compute
{
/** Exponent polynomial coefficients */
#include "src/core/NEON/wrapper/wrapper.h"
#include "src/core/helpers/AutoConfiguration.h"
#include "src/core/helpers/WindowHelpers.h"
+#include "support/ToolchainSupport.h"
#include <arm_neon.h>
#include <cmath>
{
GemmMethod::GEMM_HYBRID,
"sve_hybrid_s8qs_dot_6x4VL",
- [](const GemmArgs &args, const Requantize32 &qp) { return quant_hybrid_symmetric(qp); },
+ [](const GemmArgs &, const Requantize32 &qp) { return quant_hybrid_symmetric(qp); },
nullptr,
[](const GemmArgs &args, const Requantize32 &qp) { return new GemmHybridIndirect<cls_sve_hybrid_s8qs_dot_6x4VL, int8_t, int8_t, Requantize32>(args, qp); }
},
{
GemmMethod::GEMM_HYBRID,
"sve_hybrid_s8qa_dot_4x4VL",
- [](const GemmArgs &args, const Requantize32 &qp) { return quant_hybrid_asymmetric(qp); },
+ [](const GemmArgs &, const Requantize32 &qp) { return quant_hybrid_asymmetric(qp); },
nullptr,
[](const GemmArgs &args, const Requantize32 &qp) { return new GemmHybridIndirect<cls_sve_hybrid_s8qa_dot_4x4VL, int8_t, int8_t, Requantize32>(args, qp); }
},
},
#ifdef SVE2 // Requantizing kernels include some SVE2 only instructions (SQRDMULH, SRSHL)
{
- GemmMethod::GEMM_HYBRID,
+ GemmMethod::GEMM_HYBRID,
"sve_hybrid_u8qa_dot_4x4VL",
- [](const GemmArgs &args, const Requantize32 &qp) { return quant_hybrid_asymmetric(qp); },
+ [](const GemmArgs &, const Requantize32 &qp) { return quant_hybrid_asymmetric(qp); },
nullptr,
[](const GemmArgs &args, const Requantize32 &qp) { return new GemmHybridIndirect<cls_sve_hybrid_u8qa_dot_4x4VL, uint8_t, uint8_t, Requantize32>(args, qp); }
},
#endif
{
- GemmMethod::GEMM_HYBRID,
+ GemmMethod::GEMM_HYBRID,
"sve_hybrid_u8u32_dot_6x4VL",
nullptr,
nullptr,
#include "support/Bfloat16.h"
#include "support/Half.h"
+#ifndef M_PI
+#define M_PI (3.14159265358979323846)
+#endif // M_PI
+
namespace arm_compute
{
namespace support
#include "Permute.h"
#include "Reverse.h"
#include "SliceOperations.h"
+#include "support/ToolchainSupport.h"
#include <cmath>