File size: 2,041 Bytes
85bd925
f25167e
85bd925
 
f25167e
85bd925
 
 
 
 
 
 
 
 
 
f25167e
 
 
85bd925
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f25167e
85bd925
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_028",
  "definition": "loop_028",
  "dataset": "simd-loop",
  "author": "reference",
  "spec": {
    "language": "cpp",
    "target_hardware": [
      "aarch64"
    ],
    "entry_point": "kernel.cpp::inner_loop_028",
    "dependencies": [],
    "isa_features": [],
    "compile_flags": [
      "-O2",
      "-std=c++14",
      "-fno-vectorize",
      "-fno-slp-vectorize"
    ],
    "link_flags": []
  },
  "sources": [
    {
      "path": "loop_028.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_028_data {\n    double *input1;\n    double *input2;\n    double *output;\n    int64_t size;\n};\n\n#ifdef __cplusplus\nextern \"C\" {\n#endif\nint armbench_entry_loop_028(void *input1, void *input2, int64_t n, void *res_out);\n#ifdef __cplusplus\n}\n#endif\n"
    },
    {
      "path": "loop_028.cpp",
      "content": "// Auto-generated by scripts/gen_simd_loop_harness.py \u2014 do not hand-edit.\n#include \"loop_028.h\"\n#include <stdint.h>\n\nextern \"C\" void inner_loop_028(struct loop_028_data *data);\n\nextern \"C\" int armbench_entry_loop_028(void *input1, void *input2, int64_t n, void *res_out) {\n    struct loop_028_data data;\n    data.input1 = static_cast<double *>(input1);\n    data.input2 = static_cast<double *>(input2);\n    data.output = static_cast<double *>(res_out);\n    data.size = static_cast<int64_t>(n);\n    inner_loop_028(&data);\n    return 0;\n}\n"
    },
    {
      "path": "kernel.cpp",
      "content": "#include \"loop_028.h\"\n#include <stdint.h>\n\nextern \"C\" void inner_loop_028(struct loop_028_data * data) {\n  double * input1 = data->input1;\n  double * input2 = data->input2;\n  double * output = data->output;\n  int64_t size = data->size;\n\n  for (int64_t i = 0; i < size; i++) {\n    output[i] = input1[i] / input2[i];\n  }\n}\n"
    }
  ],
  "description": "Scalar reference (auto-vectorization disabled) for loop_028. Baseline for speedup measurement."
}