ArtificialRay
local snapshot before syncing with HF
7502e01
Raw
History Blame Contribute Delete
726 Bytes
{
"name": "loop_033",
"op_type": "loop_033",
"description": "Compute FP64 inner product of two arrays",
"tags": [
"simd-loop"
],
"axes": {
"N": {
"type": "var",
"description": "Array length"
}
},
"inputs": {
"a": {
"shape": [
"N"
],
"dtype": "float64"
},
"b": {
"shape": [
"N"
],
"dtype": "float64"
}
},
"outputs": {
"res": {
"shape": null,
"dtype": "float64",
"description": "Scalar result"
}
},
"reference": "import numpy as np\n\ndef run(a, b):\n return np.float64(np.dot(a, b))\n",
"simd_loop_meta": {
"output_inplace": false,
"array_pad": 0,
"scratch": []
}
}