"library/vscode:/vscode.git/clone" did not exist on "5af78ac26ba2e4f0464b63fb159e77b73307708d"
Remove alpha and beta from `dot` and `quant_dot` (#961)
Previously dot operator was defined as C = alpha * A . B + beta * C where * is scalar multiplication and . is dot product or matrix multiplication depending on dimension of the inputs. Aim is to have the definition of dot operator as C = A . B without having alpha or beta. In order to achieve the same effect as alpha and beta (1) it multiplies the one of the inputs to the dot operator with alpha value. (2) if beta is present then, multiplies the C with beta and then adds into the output from step 1.
Showing
src/apply_alpha_beta.cpp
0 → 100644
src/common.cpp
100755 → 100644
File mode changed from 100755 to 100644
src/decompose.cpp
deleted
100644 → 0
src/onnx/parse_matmul.cpp
100755 → 100644
src/remap.cpp
deleted
100644 → 0
Please register or sign in to comment