Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Acb theta v2 #2182

Open
wants to merge 260 commits into
base: main
Choose a base branch
from
Open

Acb theta v2 #2182

wants to merge 260 commits into from

Conversation

j-kieffer
Copy link
Contributor

This is a thorough rewrite of the acb_theta module.

The major changes are the following:

  • introduce context structures in the context of summation algorithms and rewrote the main worker function. This is to allow the next item, and to prevent NaNs when inverting complex numbers at very low precisions.
  • compute exponentials, ellipsoid centers, etc. only once when computing low-precision approximation for the duplication formulas. This should improve performances slightly and decrease the threshold between acb_theta_all and acb_modular_theta.
  • support several vectors z in the quasi-linear algorithms, using the simplest possible duplication formulas for each of them. This should drastically improve the efficiency of the "dimension-lowering" strategy.
  • simplify the management of error bounds by assuming the inputs to be exact and reduced in key internal functions.
  • in the g=1 case, rely on acb_modular_theta_sum instead of acb_modular_theta. This is to allow acb_modular_theta to possibly point to acb_theta_all in the future.
  • make an automatic choice of algorithms in the main user functions between summation and duplication.
  • remove some macros, make some internal functions static in the C files, and write a separate header acb_theta_types.h to lighten the user interface a bit.
  • update documentation.

I mark this as a draft pull request because there are still some todos during the coming week, including:

  • profile the code to make the best possible choices and acb_theta_ql_nb_steps and demonstrate performance gains compared to the previous version.
  • implement the fact that odd theta constants are known to be zero in acb_theta_ql_setup.
  • change some function names that don't match their section (acb_theta_sum_bounds, acb_theta_agm_distances,...)
  • check code coverage and valgrind.
  • use acb_theta_sum_bounds to avoid NaN results only in acb_theta_all and acb_theta_00.
  • possibly use quasi-linear algorithms in acb_theta_00 and acb_theta_jet_00 as well.
  • look at commits that happened on all files since the last workshop and implement them on the new files.
  • get feedback from workshop participants.

@j-kieffer
Copy link
Contributor Author

All right, I'm marking the PR as ready for review !
I finished implementing the todos from my first message (except that acb_theta_types.h doesn't exist anymore.) Additionally, I have rewritten a fair number of functions to reduce code duplication to a minimum.
Note that there are 1.2k lines less now than in the current acb_theta module in FLINT, while the running time of the example program in the documentation (g=2, prec=10000) was reduced from .1s to 7-8ms.

@j-kieffer j-kieffer marked this pull request as ready for review February 13, 2025 15:27
@albinahlback
Copy link
Collaborator

Hello Jean, and sorry for the delay! Is there anything specific that you'd like to have feedback on?

else
{
acb_inv(exp_inv, exp, prec);
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the logic in this file correct, considering that the presumably faster acb_inv branch is not reached by tests?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for catching this ! I guess I was confused about what acb_rel_error_bits does. On 1 +- 0.25, is it supposed to return -2 right?
Then the correct line should probably be || acb_rel_error_bits(exp) >= -0.75*prec. The goal was to only trigger recomputing an exponential when acb_inv would cause NaNs or large errors to appear.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think prefer to use acb_rel_accuracy_bits here. So acb_rel_accuracy_bits(exp) <= 0.75 * prec (or 0.25 * prec? it's not entirely clear what cutoff was intended). Would be nice to have this function tested anyway.

@j-kieffer
Copy link
Contributor Author

Hello Jean, and sorry for the delay! Is there anything specific that you'd like to have feedback on?

No worries at all. I think the main questions I have are: do you think the interface looks OK? And is the documentation clear enough to follow what's going on?

@albinahlback
Copy link
Collaborator

Do you think the interface looks OK?

Yes, I think it looks very good.

And is the documentation clear enough to follow what's going on?

Yes, I think the documentation is very good! I've not looked everything into super much detail, but I think the naming scheme and descriptions looks good so far!

.. function:: int acb_theta_char_is_even(ulong ab, slong g)

Returns true iff the characteristic `(a,b)` is even, i.e. `a^Tb` is divisible by 2.
Returns true iff the characteristic `(a,b)` is even, i.e. `a^Tb` is
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Returns true iff the characteristic `(a,b)` is even, i.e. `a^Tb` is
Returns true iff the characteristic `(a,b)` is even, i.e. `a^T b` is

for easier readability when reading in monospace

Partially applies the theta transformation formula to the given vector *th*
for the symplectic matrix *mat* and stores the output in *res*. This omits
the `\kappa`, determinant, and exponential factors from the formula. If
*sqr* is nonzero (true), then replaces `\zeta_8` in the formula by `i` to
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
*sqr* is nonzero (true), then replaces `\zeta_8` in the formula by `i` to
*sqr* is nonzero, then `\zeta_8` is replaced by `i` in the formula to

@albinahlback
Copy link
Collaborator

After you feel like you've addressed everything, could you squash your commits? Something like 1 to 5 commits, depending on how separate the commits can be made and how much it makes sense to split them.

(I guess you already know how to write commit messages, but here's how:

Squash the you've selected into one commit, and make the title of the commit short but descriptive and written in imperative. Its description will probably be long in your case, and should be a detailed overview. This makes it easier for people to backtrack history, changes etc.)‘

@albinahlback
Copy link
Collaborator

albinahlback commented Apr 2, 2025

Can you make it more clear, or direct me on how to compute theta functions for specific $(a, b)$ (or how to obtain them from acb_theta_all)?

@j-kieffer
Copy link
Contributor Author

Can you make it more clear, or direct me on how to compute theta functions for specific ( a , b ) (or how to obtain them from acb_theta_all)?

There are two possibilities:

  • either call acb_theta_all and get the corresponding entry. Assuming $a = (a_1,\ldots,a_g)$ and $b = (b_1,\ldots,b_g)$, the index in the output vector is $i = b_g + 2b_{g-1} + \cdots + 2^{g-1}b_1 + 2^g(a_g + 2 a_{g-1} + \cdots + 2^{g-1}a_1)$.
  • call acb_theta_jet with ord = all = sqr = 0 to get $\theta_{0,0}(z + \tau a/2 + b/2, \tau)$, and then multiply by $\exp(\pi i a^T (z + \tfrac b2) + \pi i a^T\tau a/4)$.

The second option will be more efficient. Do you I should write a direct interface (also allowing for partial derivatives of an individual $\theta_{a,b}$) ? It wouldn't be too much work.

@albinahlback
Copy link
Collaborator

I think it would make sense to have both. If the user is only interested in one specific tuple, then perhaps a wrapper for acb_theta_jet with this stuff you mention. Apart from this, I suppose it would be good to have an index function that takes the tuples $a$ and $b$, and returns the corresponding index for the output vector in acb_theta_all.

And I believe these features should be present in the main section so that it is clear when reading the section "Main user functions". Does this sound reasonable?

@fredrik-johansson
Copy link
Collaborator

This PR looks fine to me assuming that the exp_inv issue is fixed and that the commits are squashed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants