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.

  • 相关阅读:
    笔记1
    笔记2
    笔记3
    两个多线程的交替打印
    三个多线程的交替打印
    内部类
    基本反射了解
    键盘监听事件KeyListener
    焦点监听事件FocusListener
    文本框JTextField,密码框JPasswordField
  • 原文地址:https://www.cnblogs.com/redfenglin/p/9226966.html
Copyright © 2011-2022 走看看