| |
| |
| |
| |
|
|
| #include <algorithm> |
| #include <cfloat> |
| #include <cmath> |
| #include <functional> |
| #include <memory> |
| #include <numeric> |
| #include <random> |
| #include <vector> |
|
|
| #include <cpuinfo.h> |
| #include <pthreadpool.h> |
|
|
| #include <benchmark/benchmark.h> |
| #include <fp16/fp16.h> |
|
|
| #include "bench/utils.h" |
| #include <xnnpack/aligned-allocator.h> |
| #include <xnnpack/common.h> |
| #include <xnnpack/math-stubs.h> |
|
|
|
|
| struct ComputeErrorContext { |
| const uint16_t* input; |
| const uint16_t* output; |
| float* error; |
| }; |
|
|
| static void ComputeError( |
| struct ComputeErrorContext* context, |
| size_t start, |
| size_t range) |
| { |
| const uint16_t* input = context->input; |
| const uint16_t* output = context->output; |
| float* error = context->error; |
| for (size_t i = start; i < start + range; i++) { |
| const float output_ref = std::exp(fp16_ieee_to_fp32_value(input[i])); |
| const float abs_error = std::abs(output_ref - fp16_ieee_to_fp32_value(output[i])); |
| const uint16_t output_abs = fp16_ieee_from_fp32_value(std::abs(output_ref)); |
| const float output_ulp = fp16_ieee_to_fp32_value(output_abs + 1) - fp16_ieee_to_fp32_value(output_abs); |
| error[i] = float(abs_error / output_ulp); |
| } |
| } |
|
|
| static void ExpError( |
| benchmark::State& state, |
| xnn_f16_unary_math_fn exp, |
| benchmark::utils::IsaCheckFunction isa_check = nullptr) |
| { |
| if (!cpuinfo_initialize()) { |
| state.SkipWithError("failed cpuinfo init"); |
| return; |
| } |
| if (isa_check != nullptr && !isa_check(state)) { |
| return; |
| } |
|
|
| |
| const uint16_t min_input = UINT16_C(0xCC55); |
| |
| const uint16_t max_input = UINT16_C(0x498F); |
|
|
| |
| |
| const size_t block_size = 16384; |
| |
| const size_t tile_size = 64; |
|
|
| uint32_t num_threads = cpuinfo_get_cores_count(); |
| #if XNN_ARCH_ARM || XNN_ARCH_ARM64 |
| |
| if (cpuinfo_get_clusters_count() > 1) { |
| num_threads -= cpuinfo_get_cluster(cpuinfo_get_clusters_count() - 1)->core_count; |
| } |
| #endif |
|
|
| std::unique_ptr<pthreadpool, decltype(&pthreadpool_destroy)> threadpool( |
| pthreadpool_create(num_threads), pthreadpool_destroy); |
|
|
| std::vector<uint16_t, AlignedAllocator<uint16_t, 64>> x(block_size); |
| std::vector<uint16_t, AlignedAllocator<uint16_t, 64>> y(block_size); |
| std::vector<float> ulp_error(block_size); |
| float max_ulp_error = 0.0f; |
|
|
| ComputeErrorContext context; |
| context.input = x.data(); |
| context.output = y.data(); |
| context.error = ulp_error.data(); |
| for (auto _ : state) { |
| for (uint16_t n = min_input; int16_t(n) < 0; n -= block_size) { |
| for (uint16_t i = 0; i < block_size; i++) { |
| x[i] = std::max<uint16_t>(n - i, UINT16_C(0x8000)); |
| } |
| std::fill(y.begin(), y.end(), UINT16_C(0x7E00) ); |
|
|
| exp(block_size * sizeof(uint16_t), x.data(), y.data()); |
|
|
| pthreadpool_parallelize_1d_tile_1d( |
| threadpool.get(), |
| reinterpret_cast<pthreadpool_task_1d_tile_1d_t>(ComputeError), |
| static_cast<void*>(&context), |
| block_size, tile_size, 0 ); |
|
|
| max_ulp_error = std::accumulate(ulp_error.cbegin(), ulp_error.cend(), max_ulp_error, |
| static_cast<const float& (*)(const float&, const float&)>(std::max<float>)); |
| } |
| for (uint16_t n = 0; n < max_input; n += block_size) { |
| for (uint16_t i = 0; i < block_size; i++) { |
| x[i] = std::min<uint16_t>(n + i, max_input); |
| } |
| std::fill(y.begin(), y.end(), UINT16_C(0x7E00) ); |
|
|
| exp(block_size * sizeof(uint16_t), x.data(), y.data()); |
|
|
| pthreadpool_parallelize_1d_tile_1d( |
| threadpool.get(), |
| reinterpret_cast<pthreadpool_task_1d_tile_1d_t>(ComputeError), |
| static_cast<void*>(&context), |
| block_size, tile_size, 0 ); |
|
|
| max_ulp_error = std::accumulate(ulp_error.cbegin(), ulp_error.cend(), max_ulp_error, |
| static_cast<const float& (*)(const float&, const float&)>(std::max<float>)); |
| } |
| } |
|
|
| state.counters["ULPERROR"] = benchmark::Counter(max_ulp_error); |
| } |
|
|
| #if XNN_ENABLE_ARM_FP16_VECTOR && (XNN_ARCH_ARM || XNN_ARCH_ARM64) |
| BENCHMARK_CAPTURE(ExpError, neonfp16arith_rr2_p3, |
| xnn_math_f16_exp__neonfp16arith_rr2_p3, |
| benchmark::utils::CheckNEONFP16ARITH) |
| ->Unit(benchmark::kMillisecond) |
| ->Iterations(1); |
| #endif |
|
|
| #ifndef XNNPACK_BENCHMARK_NO_MAIN |
| BENCHMARK_MAIN(); |
| #endif |
|
|