mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-27 20:02:15 +00:00
12 lines
358 B
C++
12 lines
358 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
namespace onnxruntime {
|
|
|
|
// Set or unset flush-to-zero and denormal=as-zero if SSE3 instructions are supported.
|
|
// Return true if SSE3 instruction is supported, otherwise return false.
|
|
bool SetDenormalAsZero(bool on);
|
|
|
|
} // namespace onnxruntime
|