From 5f82195bc812a3323fb446bbe35f5ce4769ac020 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Mon, 6 Aug 2018 19:56:30 -0500 Subject: [PATCH] Fix overcounting of eval_locals. Closes #103 --- pytential/qbx/fmm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pytential/qbx/fmm.py b/pytential/qbx/fmm.py index 994c8ff7..46d7ae88 100644 --- a/pytential/qbx/fmm.py +++ b/pytential/qbx/fmm.py @@ -809,7 +809,8 @@ def assemble_performance_data(geo_data, uses_pde_expansions, # {{{ evaluate locals - result["eval_part"] = tree.ntargets * ncoeffs_fmm + non_qbx_box_targets = geo_data.non_qbx_box_target_lists() + result["eval_part"] = non_qbx_box_targets.nfiltered_targets * ncoeffs_fmm # }}} -- GitLab