MCPcopy Create free account
hub / github.com/Kitware/VTK / SynchronizedPrintf

Function SynchronizedPrintf

Parallel/MPI/vtkMPIUtilities.h:108–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106template <typename... T>
107VTK_DEPRECATED_IN_9_6_0("Use vtkMPIUtilities::SynchronizedPrint instead")
108void SynchronizedPrintf(vtkMPIController* comm, const char* formatArg, T&&... args)
109{
110 std::string format = formatArg ? vtk::to_std_format(formatArg) : "";
111 assert(comm != nullptr);
112 vtkMPIUtilities::SynchronizedPrint(comm, format.c_str(), std::forward<T>(args)...);
113}
114///@}
115VTK_ABI_NAMESPACE_END
116} // END namespace vtkMPIUtilities

Callers

nothing calls this directly

Calls 4

to_std_formatFunction · 0.85
SynchronizedPrintFunction · 0.85
assertFunction · 0.50
c_strMethod · 0.45

Tested by

no test coverage detected