| { | |
| "name": "reference_loop_033", | |
| "definition": "loop_033", | |
| "dataset": "simd-loop", | |
| "author": "reference", | |
| "spec": { | |
| "language": "cpp", | |
| "target_hardware": [ | |
| "aarch64" | |
| ], | |
| "entry_point": "kernel.cpp::inner_loop_033", | |
| "dependencies": [], | |
| "isa_features": [], | |
| "compile_flags": [ | |
| "-O2", | |
| "-std=c++14", | |
| "-fno-vectorize", | |
| "-fno-slp-vectorize" | |
| ], | |
| "link_flags": [] | |
| }, | |
| "sources": [ | |
| { | |
| "path": "loop_033.h", | |
| "content": "// Auto-generated by scripts/gen_simd_loop_harness.py \u2014 do not hand-edit.\n#pragma once\n#include <stdint.h>\n\nstruct loop_033_data {\n double *a;\n double *b;\n int64_t n;\n double res;\n};\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nint armbench_entry_loop_033(void *a, void *b, int64_t n, void *res_out);\n#ifdef __cplusplus\n}\n#endif\n" | |
| }, | |
| { | |
| "path": "loop_033.cpp", | |
| "content": "// Auto-generated by scripts/gen_simd_loop_harness.py \u2014 do not hand-edit.\n#include \"loop_033.h\"\n#include <cassert>\n#include <limits>\n\nextern \"C\" void inner_loop_033(struct loop_033_data *data);\n\nextern \"C\" int armbench_entry_loop_033(void *a, void *b, int64_t n, void *res_out) {\n if (n < 0 || n > std::numeric_limits<int>::max()) return -1;\n struct loop_033_data data;\n data.a = static_cast<double *>(a);\n data.b = static_cast<double *>(b);\n data.n = static_cast<int64_t>(n);\n data.res = 0.0;\n inner_loop_033(&data);\n *static_cast<double *>(res_out) = data.res;\n return 0;\n}\n" | |
| }, | |
| { | |
| "path": "kernel.cpp", | |
| "content": "#include \"loop_033.h\"\n#include <stdint.h>\n\nextern \"C\" void inner_loop_033(struct loop_033_data * input) {\n double *a = input->a;\n double *b = input->b;\n int64_t n = input->n;\n\n double res = 0.0;\n for (int i = 0; i < n; i++) {\n res += a[i] * b[i];\n }\n input->res = res;\n}\n" | |
| } | |
| ], | |
| "description": "Scalar reference (auto-vectorization disabled) for loop_033. Baseline for speedup measurement." | |
| } | |