forked from m-a-d-n-e-s-s/madness
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
263 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
|
||
set(MY_EXECUTABLES | ||
mad-freq | ||
mad-freq_vtk_plots | ||
mad-excited | ||
frequency_calc | ||
excited_state_calc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// | ||
// Created by adrianhurtado on 1/1/22. | ||
// | ||
#include "ResponseExceptions.hpp" | ||
#include "madness/tensor/tensor_json.hpp" | ||
#include "madness/world/worldmem.h" | ||
#include "response_functions.h" | ||
#include "runners.hpp" | ||
|
||
#if defined(HAVE_SYS_TYPES_H) && defined(HAVE_SYS_STAT_H) && defined(HAVE_UNISTD_H) | ||
|
||
#include <sys/stat.h> | ||
#include <unistd.h> | ||
|
||
static inline int file_exists(const char *input_name) { | ||
struct stat buffer {}; | ||
size_t rc = stat(input_name, &buffer); | ||
return (rc == 0); | ||
} | ||
|
||
#endif | ||
|
||
using path = std::filesystem::path; | ||
|
||
using namespace madness; | ||
|
||
|
||
auto main(int argc, char *argv[]) -> int { | ||
|
||
madness::initialize(argc, argv); | ||
|
||
{ | ||
World world(SafeMPI::COMM_WORLD); | ||
startup(world, argc, argv, true); | ||
|
||
try { | ||
sleep(5); | ||
std::cout.precision(6); | ||
if (argc != 6) { | ||
std::cout << "Wrong number of inputs" << std::endl; | ||
return 1; | ||
} | ||
const std::string molecule_name{argv[1]}; | ||
const std::string xc{argv[2]}; | ||
const std::string op{argv[3]}; | ||
const std::string precision{argv[4]}; | ||
const std::string static_calc{argv[5]}; | ||
if (precision != "high" && precision != "low" && precision != "super") { | ||
if (world.rank() == 0) { std::cout << "Set precision to low high super" << std::endl; } | ||
return 1; | ||
} | ||
auto schema = runSchema(world, xc); | ||
auto m_schema = moldftSchema(world, molecule_name, xc, schema); | ||
auto f_schema = frequencySchema(world, schema, m_schema, op, static_calc == "true"); | ||
write_VTK_outputs(world, f_schema, precision); | ||
} catch (const SafeMPI::Exception &e) { | ||
print(e.what()); | ||
error("caught an MPI exception"); | ||
} catch (const madness::MadnessException &e) { | ||
print(e); | ||
error("caught a MADNESS exception"); | ||
} catch (const madness::TensorException &e) { | ||
print(e.what()); | ||
error("caught a Tensor exception"); | ||
} catch (const nlohmann::detail::exception &e) { | ||
print(e.what()); | ||
error("Caught JSON exception"); | ||
} catch (const std::filesystem::filesystem_error &ex) { | ||
std::cerr << ex.what() << "\n"; | ||
} catch (const std::exception &e) { | ||
print(e.what()); | ||
error("caught an STL exception"); | ||
} catch (...) { error("caught unhandled exception"); } | ||
// Nearly all memory will be freed at this point | ||
print_stats(world); | ||
if (world.rank() == 0) { print("Finished All Frequencies"); } | ||
} | ||
finalize(); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters