-
|
I'm wondering whether the following build failure is due to something wrong with my environment or a bug in pySecDec.
import pySecDec as psd
if __name__ == "__main__":
li = psd.LoopIntegralFromGraph(
internal_lines=[
["m", [1, 2]],
[0, [1, 2]],
[0, [1, 3]],
[0, [2, 3]],
],
powerlist=[1, 1, 1, -2],
external_lines=[["p1", 1], ["p2", 2], ["p3", 3]],
replacement_rules=[
["p1**2", "msq"],
["p2**2", "msq"],
["p3**2", "s"],
["p1*p2", "s/2-msq"],
["p2*p3", "-s/2"],
["p1*p3", "-s/2"],
["m**2", "msq"],
["msq", 1],
],
)
psd.loop_package(
name="F1",
loop_integral=li,
requested_orders=[0],
real_parameters=["s"],
)Build command: python3 generate_F1.py
make -C F1 disteval CXXFLAGS='-mavx2 -mfma' SECDEC_WITH_CUDA_FLAGS='-arch=sm_80'Compilation error: The build succeeds when My environment: |
Beta Was this translation helpful? Give feedback.
Answered by
magv
Mar 31, 2025
Replies: 1 comment 2 replies
-
|
Hi, Takahiro. This is indeed a pySecDec problem. We've fixed it internally, and should get it out soon. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
tueda
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, Takahiro. This is indeed a pySecDec problem. We've fixed it internally, and should get it out soon.