Skip to content

Commit

Permalink
fix building deformconv for onnxrubtime on windows(#2432)
Browse files Browse the repository at this point in the history
  • Loading branch information
flytocc committed Sep 14, 2023
1 parent 8478249 commit bb031c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ void parallel_unroll_gemm(const float *A, const float *B, const float *V, const
const int32_t M, const int32_t N, const int32_t K, const float alpha,
const float beta, float *Y, const int32_t start_row,
const int32_t end_row) {
float tmp[N]; // tmp
std::vector<float> tmp(N);
for (int32_t m = start_row; m < end_row; ++m) {
for (int32_t n = 0; n < N; n++) {
tmp[n] = 0;
Expand Down

0 comments on commit bb031c6

Please sign in to comment.