Skip to content

Commit

Permalink
Changelog update and move reuirements pulp-sdk to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
lukamac committed Dec 17, 2024
1 parent e6b6e1b commit 53d06bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Added

- github action for testing neureka
- add NnxMapping dictionary that maps accelerator name to the accelerator specific classes
- choice of data generation method (ones, incremented, or random)
- N-EUREKA accelerator support: 3x3, 1x1, and 3x3 depthwise convolution kernels
Expand All @@ -17,6 +18,7 @@

### Changed

- python requirements are changed into requirements-pip and requirements-conda
- conftest now passes only strings to test.py to improve readability of pytest logs
- NnxMemoryLayout is now NnxWeight and also has a method for source generation
- the `wmem` field in the test configurations is now required
Expand Down
5 changes: 2 additions & 3 deletions test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
########## Stage 1: Large image to build toolchains and emulator ##########
FROM ubuntu:22.04 AS builder
FROM ubuntu:22.04

RUN DEBIAN_FRONTEND=noninteractive \
apt-get update && \
Expand All @@ -21,7 +20,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
&& apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY requirements-pip.txt requirements-pulp-sdk.txt ./
COPY requirements-pip.txt docker/requirements-pulp-sdk.txt ./
RUN pip3 install --no-cache-dir -r requirements-pip.txt -r requirements-pulp-sdk.txt --extra-index-url https://download.pytorch.org/whl/cpu

ENV PULP_SDK_HOME="/pulp-sdk"
Expand Down
File renamed without changes.

0 comments on commit 53d06bf

Please sign in to comment.