Skip to content

Commit

Permalink
baby steps 3: slimmer coreir layer
Browse files Browse the repository at this point in the history
  • Loading branch information
steveri committed Sep 26, 2023
1 parent a1aad27 commit 75db2c0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ RUN pip install Cython==0.29 pytest toml scikit-build==0.13.0 && \
WORKDIR /aha
COPY ./coreir /aha/coreir
WORKDIR /aha/coreir/build
RUN cmake .. && make && make install
RUN cmake .. && make && make install && \
echo -n "BEFORE CLEANUP: " && du -hs /aha/coreir/build && \
/bin/rm -rf src bin tests && \
echo -n "AFTER CLEANUP: " && du -hs /aha/coreir/build

# Lake
COPY ./BufferMapping /aha/BufferMapping
Expand Down

0 comments on commit 75db2c0

Please sign in to comment.