hpc.html 9.28 KB
Newer Older
Muddsair Sharif's avatar
Muddsair Sharif committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
    <title>Hilfe: Gitlab-Pages</title>
    <link rel="stylesheet" href="/css/bootstrap.min.css">
    <link rel="stylesheet" href="/css/m4lab.css">
    <link rel="stylesheet" href="/fonts/font-awesome.min.css">
    <link rel="stylesheet" href="/fonts/ionicons.min.css">
    <link rel="stylesheet" href="/css/Testimonials.css">
    <link rel="stylesheet" href="/css/help.css">
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
</head>

<body>

    <div style="background-color: #dadada;">
    
        <div class="container" style="background-color: #ffffff;margin-bottom: 30px;">
            <div class="row">
            </div>
       </div> 
        <div id="help_Text" style="margin-top: 10px;margin-bottom: 30px;">
            <div class="container" style="background-color: #ffffff;">
                <div style="margin-bottom: 0;padding-top: 20px;padding-bottom: 20px;">
                    <div class="col-lg-12">
                        <h2 class="d-flex flex-column order-1 justify-content-lg-start text-center" style="padding-top: 15px;color: #708090;"><strong>Arbeiten mit der Hochleistungsrechenplattform</strong></h2> 
                    </div>
                    <div class="col-auto" style="background-color: #ffffff;">
                        <div class="help">
                            <div class="card">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <a class="collapsed" data-toggle="collapse" href="#collapse1" aria-expanded="false" aria-controls="collapse1">
                                        <small>Zugang zum Dienst</small></a>
                                    </h3>
                                </div>
                                <div id="collapse1" class="card-body collapse" style="">
                                    <p>
                                        To access the High-Performance Computing platform, one must have registered themselves with the organization that provides such services. In our case, users must have to register themselves with KIT. It is an organization that is providing services to access the high-performance cluster sponsored by Baden-Württemberg. Please visit the link: <a href="https://wiki.bwhpc.de/e/BwUniCluster_2.0_User_Access" target="_blank">how to register</a> to get the registration done.
                                    </p>
44
                                    <img style="width:100%" src="/img/hpc/bwhpc.jpg" alt="hpc picture here">
Muddsair Sharif's avatar
Muddsair Sharif committed
45
46
47
48
49
50
                                </div>
                            </div>
                            <br/>
                            <div class="card">
                                <div class="card-header">
                                    <h3 class="card-title">
51
                                        <a class="collapsed" data-toggle="collapse" href="#collapse2" aria-expanded="false" aria-controls="collapse1">
Muddsair Sharif's avatar
Muddsair Sharif committed
52
53
54
                                        <small>Anbinden an den HPC Dienst</small></a>
                                    </h3>
                                </div>
55
                                <div id="collapse2" class="card-body collapse" style="">
Muddsair Sharif's avatar
Muddsair Sharif committed
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
                                    <p>
                                        Here some basic information that you need to establish connection to the cluster to run your computation tasks over there And that there are two different approaches, one using a templated prepared by us and one to implement the connection from scratch.
                                    </p>
                                </div>
                            </div>
                            <br/>
                            <div class="card">
                                <div class="card-header">
                                    <h3 class="card-title">
                                        <a class="collapsed" data-toggle="collapse" href="#collapse3" aria-expanded="false" aria-controls="collapse3">
                                            <small>Verwenden eines Templates zur Anbindung an den HCP Dienst</small></a>
                                    </h3>
                                </div>
                                <div id="collapse3" class="card-body collapse" style="">
                                   <p>We introduce a state of the art template-based approach using Gitlab-CI/CD in which the user has to copy the predefined template (link of an HPC test project that contains predefined template) where the user has to provide information such as login information, module, or application repository, objective and/or set of resources required to compute information and etc. over HPC-platform. We have already presented this approach at a scientific conference. For further information please read out our published work which explains concretely with a use-case study.
                                   <br/>for more information.
                                </p> 
73
                                    <img style="width:100%" src="/img/hpc/tempapproach.png" alt="template base appraoch">
Muddsair Sharif's avatar
Muddsair Sharif committed
74
75
76
77
78
79
80
                                    <br/>1. COaaS:Continuous Integration and Delivery framework for HPC using Gitlab-Runner, BDIOT2020, the fourth international conference on Big Data, Singapore.
                                </div>
                            </div>
                            <br/>
                            <div class="card">
                                <div class="card-header">
                                    <h3 class="card-title">
81
                                        <a class="collapsed" data-toggle="collapse" href="#collapse4" aria-expanded="false" aria-controls="collapse4">
Muddsair Sharif's avatar
Muddsair Sharif committed
82
83
84
                                            <small>Anbindung an den HCP Dienst ohne Template</small></a>
                                    </h3>
                                </div>
85
                                <div id="collapse4" class="card-body collapse" style="">
Muddsair Sharif's avatar
Muddsair Sharif committed
86
87
88
                                    <p>
                                        In a non-template-based approach, after login, the user must follow the appropriate instruction given in the following link: <a href="https://wiki.bwhpc.de/e/Batch_Jobs" target="_blank"> non-template-based instruction</a>, that is suitable for their application to compute over the HPC-platform. These instructions may contain(s) software-module(s), different compilers, numerical libraries, etc.
                                    </p>
89
                                    <img style="width:100%" src="/img/hpc/nontemp.png" alt="non template appraoch">
Muddsair Sharif's avatar
Muddsair Sharif committed
90
91
92
93
94
95
                                </div>
                            </div>
                            <br/>
                            <div class="card">
                                <div class="card-header">
                                    <h3 class="card-title">
96
                                        <a class="collapsed" data-toggle="collapse" href="#collapse5" aria-expanded="false" aria-controls="collapse5">
Muddsair Sharif's avatar
Muddsair Sharif committed
97
98
99
                                        <small>Ausführen einer Simulation</small></a>
                                    </h3>
                                </div>
100
                                <div id="collapse5" class="card-body collapse" style="">
Muddsair Sharif's avatar
Muddsair Sharif committed
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
                                    <p>
                                        Information about how to run simulation on HPCC platform is available on the following link <a href="https://wiki.bwhpc.de/e/BwHPC_Best_Practices_Repository" target="_blank" >BwHPC Best Practices</a>. To get HPC services efficiently, It is recommended that you should have sufficient knowledge about parallel-programming, batch jobs, software module, compiler, numerical libraries. The best practices repository of Baden-Württemberg's high performance computing (bwHPC) covers generic high performance computing user guides and science specific HPC best practice guides (BPG).                                    
                                    </p>
                                   
                                </div>
                            </div>
                            
                            <br/>
         
                    </div>
                </div>
            </div>
        </div>
    </div>
        
        <div class="container" style="background-color: #ffffff;margin-bottom: 30px;">
            <div class="row">
            </div>
       </div> 
    </div>
</div>

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>-->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="/js/headfoot.js"></script>
</body>

</html>