MCPcopy Create free account
hub / github.com/NGSolve/ngsolve / MultTrans

Method MultTrans

linalg/python_linalg.cpp:960–967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

958 }
959
960 void MultTrans (const BaseVector & x, BaseVector & y) const override {
961 pybind11::gil_scoped_acquire gil;
962
963 if (auto overload = pybind11::get_overload(this, "MultTrans"))
964 overload(x.shared_from_this(), y.shared_from_this());
965 else
966 BaseMatrix::MultTrans(x,y);
967 }
968
969 void MultAdd (double s, const BaseVector & x, BaseVector & y) const override {
970 pybind11::gil_scoped_acquire gil;

Callers 4

MultTransMethod · 0.45
MultFunction · 0.45
MultTransFunction · 0.45
MultTransAddFunction · 0.45

Calls 2

MultTransFunction · 0.70
shared_from_thisMethod · 0.45

Tested by 1

MultTransMethod · 0.36