void tile(double **a, int r1, int r2, int n, int jgl, int kgl, int igl)
{
const auto j = jgl;
for(auto k = kgl * r1 + 1; std::min((kgl + 1) * r1, j - 1); k++)
{
for (auto i = igl * r2 + k + 1; std::min((igl + 1), n); i++)
{
a[i][j] = a[i][j] - a[i][k] / a[k][k] * a[k][j];
}
}
}
-
Notifications
You must be signed in to change notification settings - Fork 0
SWATOPLUS/GaussMPI
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published