Skip to content

Commit 9af729b

Browse files
committed
remove fpga part
1 parent a5b3108 commit 9af729b

File tree

5 files changed

+3
-52
lines changed

5 files changed

+3
-52
lines changed

devops/containers/ubuntu2204_intel_drivers.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ COPY dependencies.json /
1515
RUN mkdir /runtimes
1616
ENV INSTALL_LOCATION=/runtimes
1717
RUN --mount=type=secret,id=github_token \
18-
GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh dependencies.json --igfx --cpu
18+
GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh dependencies.json --all
1919

2020
COPY scripts/drivers_entrypoint.sh /drivers_entrypoint.sh
2121

devops/containers/ubuntu2404_intel_drivers.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ COPY dependencies.json /
1515
RUN mkdir /runtimes
1616
ENV INSTALL_LOCATION=/runtimes
1717
RUN --mount=type=secret,id=github_token \
18-
GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh dependencies.json --igfx --cpu
18+
GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh dependencies.json --all
1919

2020
COPY scripts/drivers_entrypoint.sh /drivers_entrypoint.sh
2121

devops/containers/ubuntu2404_intel_drivers_igc_dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN mkdir /runtimes
1717
ENV INSTALL_LOCATION=/runtimes
1818
RUN --mount=type=secret,id=github_token \
1919
install_driver_opt="dependencies.json dependencies-igc-dev.json --use-dev-igc"; \
20-
GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh $install_driver_opt --igfx --cpu
20+
GITHUB_TOKEN=$(cat /run/secrets/github_token) /install_drivers.sh $install_driver_opt --all
2121

2222
COPY scripts/drivers_entrypoint.sh /drivers_entrypoint.sh
2323

devops/scripts/get_release.py

Lines changed: 0 additions & 23 deletions
This file was deleted.

devops/scripts/install_drivers.sh

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -173,33 +173,12 @@ InstallCPURT () {
173173
fi
174174
}
175175

176-
InstallFPGAEmu () {
177-
echo "Installing Intel FPGA Fast Emulator..."
178-
echo "FPGA Emulator version $FPGA_TAG"
179-
mkdir -p $INSTALL_LOCATION
180-
cd $INSTALL_LOCATION
181-
if [ -d "$INSTALL_LOCATION/fpgaemu" ]; then
182-
echo "$INSTALL_LOCATION/fpgaemu exists and will be removed!"
183-
rm -Rf $INSTALL_LOCATION/fpgaemu;
184-
fi
185-
get_release intel/llvm $FPGA_TAG \
186-
| grep -E ".*fpgaemu.*tar.gz" \
187-
| wget -qi - && \
188-
mkdir fpgaemu && tar -xf *.tar.gz -C fpgaemu && rm *.tar.gz
189-
if [ -e /runtimes/fpgaemu/install.sh ]; then
190-
bash -x /runtimes/fpgaemu/install.sh
191-
else
192-
echo /runtimes/fpgaemu/x64/libintelocl_emu.so > /etc/OpenCL/vendors/intel_fpgaemu.icd
193-
fi
194-
}
195-
196176
if [[ $# -eq 0 ]] ; then
197177
echo "No options were specified. Please, specify one or more of the following:"
198178
echo "--all - Install all Intel drivers"
199179
echo "--igfx - Install Intel Graphics drivers"
200180
echo "--use-dev-igc - Install development version of Intel Graphics drivers instead"
201181
echo "--cpu - Install Intel CPU OpenCL runtime"
202-
echo "--fpga-emu - Install Intel FPGA Fast emulator"
203182
echo "Set INSTALL_LOCATION env variable to specify install location"
204183
exit 0
205184
fi
@@ -217,7 +196,6 @@ while [ "${1:-}" != "" ]; do
217196
InstallIGFX
218197
InstallTBB
219198
InstallCPURT
220-
InstallFPGAEmu
221199
;;
222200
"--igfx")
223201
InstallIGFX
@@ -226,10 +204,6 @@ while [ "${1:-}" != "" ]; do
226204
InstallTBB
227205
InstallCPURT
228206
;;
229-
"--fpga-emu")
230-
InstallTBB
231-
InstallFPGAEmu
232-
;;
233207
esac
234208
shift
235209
done

0 commit comments

Comments
 (0)