summaryrefslogtreecommitdiff
path: root/source/math/PlatformMath.cc
diff options
context:
space:
mode:
Diffstat (limited to 'source/math/PlatformMath.cc')
-rw-r--r--source/math/PlatformMath.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/math/PlatformMath.cc b/source/math/PlatformMath.cc
index cc603f3..b666d29 100644
--- a/source/math/PlatformMath.cc
+++ b/source/math/PlatformMath.cc
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021 Arm Limited. All rights reserved.
+ * Copyright (c) 2021-2022 Arm Limited. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -303,6 +303,11 @@ namespace math {
}
}
+ float MathUtils::SigmoidF32(float x)
+ {
+ return 1.f/(1.f + std::exp(-x));
+ }
+
} /* namespace math */
} /* namespace app */
} /* namespace arm */