zoukankan      html  css  js  c++  java
  • 使用Docker 安装 Deal.II Version:9.0.0

    For each directory in this repository, one (or more) images are built either on dockerhub, or on travis.

    In particular

    • ubuntu16
    • base

    contain the startup OS and a minimal set of packages to compile serial builds. Both images are built
    automatically on dockerhub:

    The directory full-deps contain docker images that download and install all external dependencies
    for deal.II, using two possible different methods:

    • fulldepscandi (gcc based)
    • fulldepsmanual (clang based)

    The building of these images is very expensive, and it is done manually, when important updates
    are available on the external libraries.

    The directory dealii, finally, contains the Dockerfiles to build the actual deal.II library images,
    in particular we build several different types of deal.II images, each on its own tag. Tags are named
    based on the type of base system that is used to bootstrap the build:

    • bare
    • fulldepscandi
    • fulldepsmanual

    And for each of these, build types Debug, Release, or DebugRelease versions of the library are
    built, with the final images stored in

    • docker pull dealii/dealii:ver-compiler-serialormpi-depstype-buildtype

    You can pull any of the above image from dockerhub using (for example)

    docker pull dealii/dealii:9.0.0-gcc-mpi-fulldepsspack-debugrelease

    after which you could run an interactive shell in it:

    docker run -i -t dealii/dealii:9.0.0-gcc-mpi-fulldepsspack-debugrelease

    This will drop you in an isolated environment where you can experiment with deal.II.

    A list of all available images is here: https://hub.docker.com/r/dealii/dealii/tags/

    Notice that if a debug build is present in the image, then you'll also have access to
    deal.II source files.

    All images are built by the user dealii.

  • 相关阅读:
    迭代器、生成器、装饰器(转)
    Python小数据池
    接阿里云oss有感
    VSCode快捷键
    前端跨域调请求 nginx反向代理
    Git生成密钥
    【westorm系列之二】配置格式化
    钉钉安卓端无法渲染数据
    express 写接口
    js正则匹配身份证号 有坑
  • 原文地址:https://www.cnblogs.com/redfenglin/p/9226966.html
Copyright © 2011-2022 走看看