Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

FreeBSD i386 compile fix #20926

Merged
merged 1 commit into from
Mar 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/operator/quantization/quantized_elemwise_mul.cc
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ void QuantizedElemwiseMulOpForward(const nnvm::NodeAttrs &attrs,
}
}
} else {
typedef float_t out_type;
typedef float out_type;
auto *out_data = outputs[quantized_elemwise_mul::kOut].dptr<out_type>();
#if !defined(_MSC_VER)
#pragma omp simd
Expand Down