bug fix when optimizing the fabric bitstream data structure

This commit is contained in:
tangxifan 2020-07-02 16:41:32 -06:00
parent adea6fcec4
commit 81c9fcb7c0
1 changed files with 1 additions and 0 deletions

View File

@ -104,6 +104,7 @@ void FabricBitstream::set_bit_din(const FabricBitId& bit_id,
}
void FabricBitstream::reverse() {
std::reverse(config_bit_ids_.begin(), config_bit_ids_.end());
std::reverse(bit_addresses_.begin(), bit_addresses_.end());
std::reverse(bit_dins_.begin(), bit_dins_.end());
}