File size: 2,107 Bytes
f25167e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  "name": "reference_loop_220",
  "definition": "loop_220",
  "dataset": "simd-loop",
  "author": "reference",
  "spec": {
    "language": "cpp",
    "target_hardware": [
      "aarch64"
    ],
    "entry_point": "kernel.cpp::inner_loop_220",
    "dependencies": [],
    "isa_features": [],
    "compile_flags": [
      "-O2",
      "-std=c++14",
      "-fno-vectorize",
      "-fno-slp-vectorize"
    ],
    "link_flags": []
  },
  "sources": [
    {
      "path": "loop_220.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_220_data {\n    uint64_t m;\n    uint64_t n;\n    float *a;\n    float *x;\n    float *b;\n};\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nint armbench_entry_loop_220(void *a, void *x, int64_t m, int64_t n, void *res_out);\n#ifdef __cplusplus\n}\n#endif\n"
    },
    {
      "path": "loop_220.cpp",
      "content": "// Auto-generated by scripts/gen_simd_loop_harness.py \u2014 do not hand-edit.\n#include \"loop_220.h\"\n#include <stdint.h>\n\nextern \"C\" void inner_loop_220(struct loop_220_data *data);\n\nextern \"C\" int armbench_entry_loop_220(void *a, void *x, int64_t m, int64_t n, void *res_out) {\n    struct loop_220_data _kd;\n    _kd.a = static_cast<float *>(a);\n    _kd.x = static_cast<float *>(x);\n    _kd.b = static_cast<float *>(res_out);\n    _kd.m = static_cast<uint64_t>(m);\n    _kd.n = static_cast<uint64_t>(n);\n    inner_loop_220(&_kd);\n    return 0;\n}\n"
    },
    {
      "path": "kernel.cpp",
      "content": "#include \"loop_220.h\"\n#include <stdint.h>\n\nextern \"C\" void inner_loop_220(struct loop_220_data *data) {\n    uint64_t m = data->m;\n    uint64_t n = data->n;\n    float *a = data->a;\n    float *x = data->x;\n    float *b = data->b;\n    for (uint64_t i = 0; i < m; i++) {\n        float d = 0;\n        for (uint64_t j = 0; j < n; j++) d += a[(i * n) + j] * x[j];\n        b[i] = d;\n    }\n}\n"
    }
  ],
  "description": "Scalar reference (auto-vectorization disabled) for loop_220. Baseline for speedup measurement."
}