Skip to content
Snippets Groups Projects
Commit ce109d84 authored by Simon Heybrock's avatar Simon Heybrock
Browse files

Re #21181. Non-distributed MPI support for IFittingAlgorithm.

parent c1231a7a
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
#define MANTID_CURVEFITTING_IFITTINGALGORITHM_H_
#include "MantidKernel/System.h"
#include "MantidAPI/Algorithm.h"
#include "MantidAPI/ParallelAlgorithm.h"
#include "MantidAPI/IDomainCreator.h"
namespace Mantid {
......@@ -51,7 +51,7 @@ class CostFuncFitting;
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class DLLExport IFittingAlgorithm : public API::Algorithm {
class DLLExport IFittingAlgorithm : public API::ParallelAlgorithm {
public:
const std::string category() const override;
......@@ -91,4 +91,4 @@ protected:
} // namespace CurveFitting
} // namespace Mantid
#endif /* MANTID_CURVEFITTING_IFITTINGALGORITHM_H_ */
\ No newline at end of file
#endif /* MANTID_CURVEFITTING_IFITTINGALGORITHM_H_ */
......@@ -455,6 +455,8 @@ Supported Algorithms
Algorithm Supported modes Comments
================================= ======================= ========
BinaryOperation all not supported if ``AllowDifferentNumberSpectra`` is enabled
CalculateChiSquared MasterOnly, Identical see ``IFittingAlgorithm``
CalculateCostFunction MasterOnly, Identical see ``IFittingAlgorithm``
CloneWorkspace all
CompressEvents all
CreateSingleValuedWorkspace Identical ``OutputWorkspace`` has ``StorageMode::Cloned``, support of ``MasterOnly`` would require adding property for selecting the mode
......@@ -462,6 +464,8 @@ CreateWorkspace all
CropToComponent all
CropWorkspace all see ``ExtractSpectra`` regarding X cropping
Divide all see ``BinaryOperation``
EstimateFitParameters MasterOnly, Identical see ``IFittingAlgorithm``
EvaluateFunction MasterOnly, Identical see ``IFittingAlgorithm``
ExtractSingleSpectrum all in practice ``ExecutionMode::Distributed`` not supported due to current nonzero-spectrum-count limitation
ExtractSpectra2 all currently not available via algorithm factory or Python
ExtractSpectra all not supported with ``DetectorList``, cropping in X may exhibit inconsistent behavior in case spectra have common boundaries within some ranks but not within all ranks or across ranks
......@@ -469,7 +473,9 @@ FilterBadPulses all
FilterByLogValue all
FilterByTime all
FilterEventsByLogValuePreNexus Identical see ``IFileLoader``
IFileLoader Identical implicitly adds support for many load inheriting from this
Fit MasterOnly, Identical see ``IFittingAlgorithm``
IFileLoader Identical implicitly adds support for many load-algorithms inheriting from this
IFittingAlgorithm MasterOnly, Identical implicitly adds support for several fit-algorithms inheriting from this
LoadAscii2 Identical see ``IFileLoader``
LoadAscii Identical see ``IFileLoader``
LoadBBY Identical see ``IFileLoader``
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment