Skip to main content

HPC Task python library.

Project description

HPC Task

Python package for easy HPC task management based on paramiko.

Installation

pip install -U hpc_task

Requirements

  • paramiko
  • ase

Usage

import ase
from hpc_task.hpc import HPCTask
from hpc_task.hpc_calculator.vasp import Vasp as hpc_Vasp  # 必须导入hpc_Vasp 而非原生的 ase 的 Vasp

target_host = {
    'hostname': "TARGET HOST IP",
    'port': 22, 
    'username': "YOUR_USERNAME",
    'password': "YOUR_PASSWD", 
}

workdir = 'test_vasp_calc'
hpc = HPCTask(workdir=workdir)
hpc.scriptdir = '/data/bin/remote.job'  # 提交作业的脚本
hpc.connect(target_host)
# 启动队列,得到 jobid
hpc.prerun()
jobid = hpc.jobid
hpc.close()  # 此时可以关闭 ssh 通道

# 在运行时候再重新构造和连接 hpc
hpc = HPCTask(jobid=jobid)  # workdir 会根据 jobid 提取得到
hpc.connect(target_host)

# 结构、计算参数设置
atoms = ase.Atoms('N2', positions=[(0., 0., 0.), (1.4, 0., 0.)],
                  cell=[10, 10, 10], pbc=True)
# calc 设置
calc = hpc_Vasp(  
            xc='pbe',
            command='mpirun -np 8 vasp544_std',  # 必须设置,或者提供了 ASE vasp 的相关设置
            hpctask=hpc,  # 这个非常关键,必须提供
            gamma=True,
            encut=400,
            lwave=False,
            lcharg=False,
            )
# 计算
atoms.calc = calc
e = atoms.get_potential_energy()
print(f"Energy of N2 is {e} eV.")
# finish job,结束节点任务
hpc.postrun()
# 关闭通道
hpc.close()

TODO

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hpc_task-0.1.2.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hpc_task-0.1.2-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file hpc_task-0.1.2.tar.gz.

File metadata

  • Download URL: hpc_task-0.1.2.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for hpc_task-0.1.2.tar.gz
Algorithm Hash digest
SHA256 2762dfde40eb10ba796dde2f2292fdaf9ebc51061c389db3200c77414c5ecf5f
MD5 eac5e48bf911d0b9283fa31a3e38824a
BLAKE2b-256 707062622bfb50e8278147318a10dc43db4d5d4ed37bff7670acfae1fc80af8c

See more details on using hashes here.

File details

Details for the file hpc_task-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: hpc_task-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for hpc_task-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 448d7743747cce627e9142bb8995be633f6f62e7eac81961e93ba9c1866b2d98
MD5 ba376e3f822a916ca5fe43ed68cf10ba
BLAKE2b-256 59bff837d97055dfe3fc55c814db2b291a720d54412021e8f9fe4269e73b1061

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page