aboutsummaryrefslogtreecommitdiff
path: root/mg2d.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2019-01-16 10:48:31 +0100
committerAnton Khirnov <anton@khirnov.net>2019-01-16 10:49:37 +0100
commit3cf65cde6a94a3c6685ac1231472bf96fcea7b88 (patch)
tree1aab759975fe695eccad041bddee23a6fe34f74f /mg2d.c
parent2f457508915cdf61d2220b9db30d4aaecd7e07b7 (diff)
mg2d: add a function for getting maximum supported fd_stencil
This is needed for the caller to know the number of boundary zones that can be filled. API bump.
Diffstat (limited to 'mg2d.c')
-rw-r--r--mg2d.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/mg2d.c b/mg2d.c
index 55b8ed9..6b94def 100644
--- a/mg2d.c
+++ b/mg2d.c
@@ -714,3 +714,8 @@ void mg2d_print_stats(MG2DContext *ctx, const char *prefix)
other / 1e6, other / 1e3 / priv->count_solve);
}
+
+unsigned int mg2d_max_fd_stencil(void)
+{
+ return FD_STENCIL_MAX;
+}