source: src/Fragmentation/Automation/Makefile.am@ 509014

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 509014 was d1dbfc, checked in by Frederik Heber <heber@…>, 13 years ago

New GetNextJobIdOperation for obtaining next available JobId from server.

  • as JobId is required to create the job, we now need two, separate communication phases: gathering info (ids) and sending info (jobs).
  • new SchedulderState GetNextJobId along with handlers.
  • new GetNextJobIdOperation that requests another id which is internally stored into a list, along with a getter that extracts them one by one.
  • controller's createjobs() and parsejobs() each take an nextid parameter now.
  • Property mode set to 100644
File size: 4.3 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4INCLUDES = -I$(top_srcdir)/LinearAlgebra/src
5
6MOSTLYCLEANFILES =
7bin_PROGRAMS =
8TESTS =
9check_PROGRAMS =
10noinst_PROGRAMS =
11noinst_LTLIBRARIES =
12
13# PLEASE adhere to the alphabetical ordering in this Makefile!
14# Also indentation by a single tab
15
16FRAGMENTJOBSSOURCE = \
17 FragmentQueue.cpp \
18 JobId.cpp \
19 Jobs/FragmentJob.cpp \
20 Jobs/MPQCCommandJob.cpp \
21 Jobs/MPQCCommandJob_MPQCData.cpp \
22 Jobs/SystemCommandJob.cpp \
23 Results/FragmentResult.cpp
24
25FRAGMENTJOBSHEADER = \
26 FragmentQueue.hpp \
27 JobId.hpp \
28 Jobs/FragmentJob.hpp \
29 Jobs/MPQCCommandJob.hpp \
30 Jobs/MPQCCommandJob_MPQCData.hpp \
31 Jobs/SystemCommandJob.hpp \
32 Results/FragmentResult.hpp
33
34noinst_LTLIBRARIES += libMolecuilderFragmentJobs.la
35libMolecuilderFragmentJobs_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
36nobase_libMolecuilderFragmentJobs_la_include_HEADERS = $(FRAGMENTJOBSHEADER)
37libMolecuilderFragmentJobs_la_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
38libMolecuilderFragmentJobs_la_LDFLAGS = $(AM_LDFLAGS)
39libMolecuilderFragmentJobs_la_SOURCES = $(FRAGMENTJOBSSOURCE)
40libMolecuilderFragmentJobs_la_LIBADD = \
41 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
42 $(BOOST_IOSTREAMS_LDFLAGS) $(BOOST_IOSTREAMS_LIBS)
43
44FRAGMENTATIONAUTOMATIONSOURCE = \
45 atexit.cpp \
46 Controller/CommandRegistry.cpp \
47 Controller/FragmentController.cpp \
48 Controller/Commands/CheckResultsOperation.cpp \
49 Controller/Commands/GetNextJobIdOperation.cpp \
50 Controller/Commands/Operation.cpp \
51 Controller/Commands/ReceiveJobsOperation.cpp \
52 Controller/Commands/SendResultsOperation.cpp \
53 Controller/Commands/ShutdownOperation.cpp \
54 GlobalJobId.cpp
55
56FRAGMENTATIONAUTOMATIONHEADER = \
57 atexit.hpp \
58 Connection.hpp \
59 ControllerChoices.hpp \
60 Controller/CommandRegistry.hpp \
61 Controller/FragmentController.hpp \
62 Controller/Commands/CheckResultsOperation.hpp \
63 Controller/Commands/GetNextJobIdOperation.hpp \
64 Controller/Commands/Operation.hpp \
65 Controller/Commands/ReceiveJobsOperation.hpp \
66 Controller/Commands/SendResultsOperation.hpp \
67 Controller/Commands/ShutdownOperation.hpp \
68 GlobalJobId.hpp
69
70noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la
71libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/Fragmentation/Automation/
72nobase_libMolecuilderFragmentationAutomation_la_include_HEADERS = $(FRAGMENTATIONAUTOMATIONHEADER)
73libMolecuilderFragmentationAutomation_la_SOURCES = $(FRAGMENTATIONAUTOMATIONSOURCE)
74
75include unittests/Makefile.am
76
77AM_LDFLAGS = -ldl ${BOOST_LDFLAGS}
78AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}
79
80bin_PROGRAMS += Controller Server Worker
81
82CONTROLLERSOURCE =
83
84CONTROLLERHEADER = \
85 FragmentController.hpp
86
87SERVERSOURCE = \
88 FragmentScheduler.cpp
89
90SERVERHEADER = \
91 Connection.hpp \
92 ControllerChoices.hpp \
93 FragmentScheduler.hpp
94
95WORKERSOURCE = \
96 FragmentWorker.cpp \
97 Worker.cpp
98
99WORKERHEADER = \
100 Connection.hpp \
101 FragmentWorker.hpp
102
103Controller_SOURCES = $(CONTROLLERSOURCE) $(CONTROLLERHEADER) controller.cpp
104Controller_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
105Controller_CXXFLAGS = $(AM_CPPFLAGS)
106Controller_LDADD = \
107 libMolecuilderFragmentationAutomation.la \
108 libMolecuilderFragmentJobs.la \
109 $(BOOST_ASIO_LIBS) \
110 $(BOOST_SERIALIZATION_LIBS) \
111 $(BOOST_THREAD_LIBS) \
112 $(BOOST_SYSTEM_LIBS) \
113 ${CodePatterns_LIBS}
114
115Server_SOURCES = $(SERVERSOURCE) $(SERVERHEADER) Server.cpp
116Server_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
117Server_CXXFLAGS = $(AM_CPPFLAGS)
118Server_LDADD = \
119 libMolecuilderFragmentationAutomation.la \
120 libMolecuilderFragmentJobs.la \
121 $(BOOST_ASIO_LIBS) \
122 $(BOOST_SERIALIZATION_LIBS) \
123 $(BOOST_THREAD_LIBS) \
124 $(BOOST_SYSTEM_LIBS) \
125 ${CodePatterns_LIBS}
126
127Worker_SOURCES = $(WORKERSOURCE) $(WORKERHEADER)
128Worker_LDFLAGS = $(AM_LDFLAGS) $(BOOST_ASIO_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS)
129Worker_CXXFLAGS = $(AM_CPPFLAGS)
130Worker_LDADD = \
131 libMolecuilderFragmentationAutomation.la \
132 libMolecuilderFragmentJobs.la \
133 $(BOOST_ASIO_LIBS) \
134 $(BOOST_SERIALIZATION_LIBS) \
135 $(BOOST_THREAD_LIBS) \
136 $(BOOST_SYSTEM_LIBS) \
137 ${CodePatterns_LIBS}
138
Note: See TracBrowser for help on using the repository browser.