Changes between Version 24 and Version 25 of User Guide/Disk Images
- Timestamp:
- May 12, 2020, 2:28:35 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
User Guide/Disk Images
v24 v25 164 164 After saving an image, it will NOT track changes to the baseline, it is a copy, not a delta. 165 165 166 You may periodically want to re-create your experimental images when a new baseline has been relased, to support new hardware, or newer drivers, etc. 167 168 ==== Baseline UHD 169 Baseline UHD starts from Baseline, then installs UHD3.15 installed from source, and downloads the fpga images with uhd_images_downloader 166 You may periodically want to re-create your experimental images when a new baseline has been released, to support new hardware, or newer drivers, etc. 170 167 171 168 [[CollapsibleStart(Reference Dockerfile)]] … … 176 173 177 174 RUN apt update && apt -y install \ 178 ruby ruby-dev iw \ 175 ruby ruby-dev iw 176 177 #Install OMF6 RC 178 179 #fix dependencies 180 RUN gem install hashie:'~>2' facter:'~>2' omf_rc:'6.2.3' 181 #manually patch omf_rc 182 COPY files/omf/config.yml /var/lib/gems/2.5.0/gems/omf_rc-6.2.3/config/config.yml 183 COPY files/omf/environment /var/lib/gems/2.5.0/gems/omf_rc-6.2.3/init/ 184 COPY files/omf/omf_rc.service /var/lib/gems/2.5.0/gems/omf_rc-6.2.3/init/ 185 COPY files/omf/install_omf_rc /usr/local/bin/install_omf_rc 186 RUN install_omf_rc -i -c 187 188 #copy misc files needed 189 COPY files/blacklist/* /etc/modprobe.d/ 190 COPY files/prepare.sh /root/prepare.sh 191 192 #clean up build 193 RUN rm -f /etc/apt/apt.conf.d/01proxy && \ 194 rm -rf /var/lib/apt/lists/* && \ 195 apt clean && \ 196 apt autoclean 197 }}} 198 [[CollapsibleEnd]] 199 200 ==== Baseline UHD 201 Baseline UHD starts from Baseline, then installs UHD3.15 installed from source, and downloads the fpga images with uhd_images_downloader 202 203 [[CollapsibleStart(Reference Dockerfile)]] 204 {{{#!dockerfile 205 FROM container_baseline:latest as baseline-uhd 206 ENV DEBIAN_FRONTEND=noninteractive \ 207 TERM=linux 208 209 RUN apt update && apt -y install \ 179 210 cmake \ 180 211 debhelper \ … … 251 282 echo "net.core.wmem_max=33554432" >> /etc/sysctl.conf 252 283 253 #Install OMF6 RC254 255 #fix dependencies256 RUN gem install hashie:'~>2' facter:'~>2' omf_rc:'6.2.3'257 #manually patch omf_rc258 COPY files/omf/config.yml /var/lib/gems/2.5.0/gems/omf_rc-6.2.3/config/config.yml259 COPY files/omf/environment /var/lib/gems/2.5.0/gems/omf_rc-6.2.3/init/260 COPY files/omf/omf_rc.service /var/lib/gems/2.5.0/gems/omf_rc-6.2.3/init/261 COPY files/omf/install_omf_rc /usr/local/bin/install_omf_rc262 RUN install_omf_rc -i -c263 264 #copy misc files needed265 COPY files/blacklist/* /etc/modprobe.d/266 COPY files/prepare.sh /root/prepare.sh267 268 284 #clean up build 269 285 RUN rm -f /etc/apt/apt.conf.d/01proxy && \ … … 272 288 apt autoclean 273 289 }}} 274 275 290 [[CollapsibleEnd]] 276 291 … … 284 299 285 300 {{{#!dockerfile 286 FROM container_baseline :latest as baseline-gr38301 FROM container_baseline-uhd:latest as baseline-gr 287 302 ENV DEBIAN_FRONTEND=noninteractive \ 288 303 TERM=linux … … 342 357 ==== Baseline Tensorflow 343 358 359 TODO 360 344 361 ==== Baseline Pytorch 362 363 TODO 345 364 346 365 === Advanced