vrsqrt指令抽象。
浮点数的倒数平方根。
1 | class vrsqrt(x, y) |
参数名 |
输入/输出 |
数据类型 |
说明 |
|---|---|---|---|
x |
输入 |
Tensor变量 |
输入x向量Tensor。支持float16、float32。 |
y |
输出 |
Tensor变量 |
输出向量Tensor。支持float16、float32。 |
1 2 3 4 5 6 | from mskpp import vrsqrt, Tensor ub_x, ub_y = Tensor("UB"), Tensor("UB") gm_x, gm_y = Tensor("GM"), Tensor("GM") ub_x.load(gm_x) ub_y.load(gm_y) out = vrsqrt(ub_x, ub_y)() |