|
|
|
|
@ -1,4 +1,6 @@
|
|
|
|
|
''' <summary>
|
|
|
|
|
Imports Microsoft.VisualBasic.Net
|
|
|
|
|
|
|
|
|
|
''' <summary>
|
|
|
|
|
''' 高性能计算集群,高性能计算集群采用将计算任务分配到集群的不同计算节点儿提高计算能力,
|
|
|
|
|
''' 因而主要应用在科学计算领域。比较流行的HPC采用Linux操作系统和其它一些免费软件来完成并行运算。
|
|
|
|
|
'''
|
|
|
|
|
@ -6,6 +8,31 @@
|
|
|
|
|
''' 这类程序一般应用特定的运行库, 比如专为科学计算设计的MPI库。HPC集群特别适合于在计算中各计算节点
|
|
|
|
|
''' 之间发生大量数据通讯的计算作业,比如一个节点的中间结果或影响到其它节点计算结果的情况。
|
|
|
|
|
''' </summary>
|
|
|
|
|
''' <remarks>
|
|
|
|
|
''' This module only works on Linux server
|
|
|
|
|
''' </remarks>
|
|
|
|
|
Public Class Cluster
|
|
|
|
|
|
|
|
|
|
ReadOnly remote As IPEndPoint
|
|
|
|
|
ReadOnly userName As String
|
|
|
|
|
ReadOnly imageName As String
|
|
|
|
|
|
|
|
|
|
''' <summary>
|
|
|
|
|
''' create a helper module for deploy environment via ``ssh`` and ``cluster node share storage``.
|
|
|
|
|
''' </summary>
|
|
|
|
|
''' <param name="remote"></param>
|
|
|
|
|
''' <param name="userName"></param>
|
|
|
|
|
''' <param name="imageName"></param>
|
|
|
|
|
Sub New(remote As IPEndPoint, userName As String, Optional imageName As String = Nothing)
|
|
|
|
|
Me.remote = remote
|
|
|
|
|
Me.userName = userName
|
|
|
|
|
Me.imageName = imageName
|
|
|
|
|
End Sub
|
|
|
|
|
|
|
|
|
|
''' <summary>
|
|
|
|
|
'''
|
|
|
|
|
''' </summary>
|
|
|
|
|
Public Sub Deploy()
|
|
|
|
|
|
|
|
|
|
End Sub
|
|
|
|
|
End Class
|
|
|
|
|
|