Fix clang issues

This commit is contained in:
abejgonzalez 2023-08-30 18:04:31 -07:00
parent 36cf75a9c3
commit b95ee4a91a
4 changed files with 8 additions and 9 deletions

View File

@ -6,4 +6,4 @@ if [ ! -d "$REQS_DIR" ]; then
echo "$REQS_DIR does not exist, make sure you're calling this script from firesim/"
exit 1
fi
conda-lock --conda $(which conda) -f "$REQS_DIR/firesim.yaml" -f "$REQS_DIR/ci-shared.yaml" -p linux-64 --lockfile "$REQS_DIR/conda-reqs.conda-lock.yml"
conda-lock -f "$REQS_DIR/firesim.yaml" -f "$REQS_DIR/ci-shared.yaml" -p linux-64 --lockfile "$REQS_DIR/conda-reqs.conda-lock.yml"

View File

@ -32,13 +32,13 @@ public:
uint32_t stream_idx,
uint32_t stream_depth);
override ~cospike_t() = default;
~cospike_t() override = default;
virtual void init();
virtual void tick();
virtual bool terminate() { return cospike_failed; };
virtual int exit_code() { return (cospike_failed) ? cospike_exit_code : 0; };
virtual void finish() { this->flush(); };
void init() override;
void tick() override;
bool terminate() override { return cospike_failed; };
int exit_code() override { return (cospike_failed) ? cospike_exit_code : 0; };
void finish() override { this->flush(); };
private:
int invoke_cospike(uint8_t *buf);

View File

@ -107,7 +107,6 @@ class CospikeBridgeModule(params: CospikeBridgeParams)(implicit p: Parameters) e
pre_cat
} else {
Cat(trace.wdata.get.pad(wdataWidth), pre_cat)
}
}

@ -1 +1 @@
Subproject commit a48746f113c238c87d405d5e806b0e7857fbd4a6
Subproject commit d54007ea25ab3b3fc2735444a0e5196974f4726c