{ "name": "loop_001", "op_type": "loop_001", "description": "Compute the FP32 dot product of two float arrays", "tags": [ "simd-loop" ], "axes": { "N": { "type": "var", "description": "Array length" } }, "inputs": { "a": { "shape": [ "N" ], "dtype": "float32" }, "b": { "shape": [ "N" ], "dtype": "float32" } }, "outputs": { "res": { "shape": null, "dtype": "float32", "description": "Scalar result" } }, "reference": "import numpy as np\n\ndef run(a, b):\n return np.float32(\n np.dot(a.astype(np.float64), b.astype(np.float64)))\n", "simd_loop_meta": { "output_inplace": false, "array_pad": 0, "scratch": [] } }