File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
vpr/src/place/delay_model Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ void OverrideDelayModel::read(const std::string& file) {
221221
222222 base_delay_model_ = std::make_unique<DeltaDelayModel>(cross_layer_delay_, delays, is_flat_);
223223
224- // Reading non-scalar capnproto fields is roughly equivilant to using
224+ // Reading non-scalar capnproto fields is roughly equivalent to using
225225 // a std::vector of the field type. Actual type is capnp::List<X>::Reader.
226226 auto overrides = model.getDelayOverrides ();
227227 std::vector<std::pair<t_override, float > > overrides_arr (overrides.size ());
@@ -245,7 +245,7 @@ void OverrideDelayModel::write(const std::string& file) const {
245245#ifndef VTR_ENABLE_CAPNPROTO
246246 VPR_THROW (VPR_ERROR_PLACE,
247247 " OverrideDelayModel::write is disabled because VTR_ENABLE_CAPNPROTO=OFF. "
248- " Re-compile with CMake option VTR_ENABLE_CAPNPROTO=ON to enable.\ " );
248+ " Re-compile with CMake option VTR_ENABLE_CAPNPROTO=ON to enable." );
249249#else
250250 ::capnp::MallocMessageBuilder builder;
251251 auto model = builder.initRoot <VprOverrideDelayModel>();
You can’t perform that action at this time.
0 commit comments