Coder Social home page Coder Social logo

Adaptative MD on local gpu about htmd HOT 5 OPEN

vas2201 avatar vas2201 commented on May 20, 2024
Adaptative MD on local gpu

from htmd.

Comments (5)

stefdoerr avatar stefdoerr commented on May 20, 2024

is there a run.sh file in the ./prod/ folder? what does it contain?

from htmd.

vas2201 avatar vas2201 commented on May 20, 2024

Please discard the above message to avoid confusion.
I attached the jpg of the jupyter notebook (adaptive protocol) as a drive link for your check. I am doing an adaptive MD on target RNA on local gpu (not submitting the job on hpc). Looks like it is running, but there is no log file ot xtc file in the directory (adaptivemd/input/e1s9_generators).

Could you please suggest to me to fix the problem?

Regards
Vas

google drive link : jupyter notebook


https://drive.google.com/file/d/1rtmgQ-LCwjLcrWPl3kK-rFRi2SyZemp_/view?usp=share_link

run.sh


#!/bin/bash
acemd3 >log.txt 2>&1

output :


ad.run()
2023-02-21 18:14:20,572 - htmd.adaptive.adaptive - INFO - Processing epoch 0
2023-02-21 18:14:20,572 - htmd.adaptive.adaptive - INFO - Epoch 0, generating first batch
2023-02-21 18:14:20,576 - htmd.adaptive.adaptive - INFO - Generators folder has no subdirectories, using folder itself
2023-02-21 18:14:21,701 - jobqueues.util - INFO - Trying to determine all GPU devices
2023-02-21 18:14:21,741 - jobqueues.util - INFO - GPU devices requested: 0
2023-02-21 18:14:21,741 - jobqueues.util - INFO - GPU devices visible: 1
2023-02-21 18:14:21,742 - jobqueues.localqueue - INFO - Using GPU devices
2023-02-21 18:14:21,743 - jobqueues.util - INFO - Trying to determine all GPU devices
2023-02-21 18:14:21,765 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s1_generators
2023-02-21 18:14:21,768 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s2_generators
2023-02-21 18:14:21,770 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s3_generators
2023-02-21 18:14:21,772 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s4_generators
2023-02-21 18:14:21,774 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s5_generators
2023-02-21 18:14:21,776 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s6_generators
2023-02-21 18:14:21,778 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s7_generators
2023-02-21 18:14:21,780 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s8_generators
2023-02-21 18:14:21,782 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s9_generators
2023-02-21 18:14:21,784 - jobqueues.localqueue - INFO - Queueing /home/nmrbox/spenumutchu/Desktop/Projects/aufr12_project/SL2_WT/hmtd_sl2wt/adaptive_md/adaptivemd/input/e1s10_generators
2023-02-21 18:14:21,786 - htmd.adaptive.adaptive - INFO - Sleeping for 120 seconds.
2023-02-21 18:16:21,887 - htmd.adaptive.adaptive - INFO - Processing epoch 1
2023-02-21 18:16:21,888 - htmd.adaptive.adaptive - INFO - Retrieving simulations.
2023-02-21 18:16:21,889 - htmd.adaptive.adaptive - INFO - 10 simulations in progress
2023-02-21 18:16:21,889 - htmd.adaptive.adaptive - INFO - Sleeping for 120 seconds.
2023-02-21 18:18:21,992 - htmd.adaptive.adaptive - INFO - Processing epoch 1
2023-02-21 18:18:21,992 - htmd.adaptive.adaptive - INFO - Retrieving simulations.
2023-02-21 18:18:21,993 - htmd.adaptive.adaptive - INFO - 10 simulations in progress
2023-02-21 18:18:21,993 - htmd.adaptive.adaptive - INFO - Sleeping for 120 seconds.
2023-02-21 18:20:22,091 - htmd.adaptive.adaptive - INFO - Processing epoch 1

from htmd.

vas2201 avatar vas2201 commented on May 20, 2024

The issue is resolved, once updated the following script.
queue = LocalGPUQueue()
queue.datadir = './data'
queue = LocalGPUQueue()
queue.devices = [1,2,4]
ad = AdaptiveMD()
ad.app = queue
ad.nmin = 5
ad.nmax = 10
ad.nepochs = 30
I can see the log files and and xtc files the simulation in /input/e1s1_sl2_10ns_1/ folder (single gpu) now.

I use the following command (All Proton distances) to construct MSM.

protsel = 'nucleic and name H**'
ad.projection = MetricSelfDistance(protsel)
#ad.projection = MetricRmsd(trajrmsdstr='nucleic and noh', refmol=Molecule('generators/structure.pdb'))

Does name H** include all the proton distances ?

Thanks for your help.
Regards
Vas

from htmd.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.