(for PR #29582)

2026-03-25 13:14.48: New job: test eigen.0.1.6 with ocaml-compiler.5.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              on debian-13-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocaml-compiler.5.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall eigen.0.1.6; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'eigen.0.1.6' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test eigen.0.1.6) || true
RUN opam reinstall --with-test --verbose eigen.0.1.6; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'eigen.0.1.6' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-25 13:14.48: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-eigen.0.1.6-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.48: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocaml-compiler.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall eigen.0.1.6;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'eigen.0.1.6' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test eigen.0.1.6) || true"))
 (run (shell  "opam reinstall --with-test --verbose eigen.0.1.6;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'eigen.0.1.6' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-25 13:14.48: Waiting for resource in pool OCluster
2026-03-25 19:23.05: Waiting for worker…
2026-03-25 19:26.40: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  69% (12783/18520)
Updating files:  70% (12964/18520)
Updating files:  71% (13150/18520)
Updating files:  72% (13335/18520)
Updating files:  73% (13520/18520)
Updating files:  74% (13705/18520)
Updating files:  75% (13890/18520)
Updating files:  76% (14076/18520)
Updating files:  77% (14261/18520)
Updating files:  78% (14446/18520)
Updating files:  79% (14631/18520)
Updating files:  80% (14816/18520)
Updating files:  81% (15002/18520)
Updating files:  82% (15187/18520)
Updating files:  83% (15372/18520)
Updating files:  84% (15557/18520)
Updating files:  85% (15742/18520)
Updating files:  86% (15928/18520)
Updating files:  87% (16113/18520)
Updating files:  88% (16298/18520)
Updating files:  89% (16483/18520)
Updating files:  90% (16668/18520)
Updating files:  91% (16854/18520)
Updating files:  92% (17039/18520)
Updating files:  93% (17224/18520)
Updating files:  94% (17409/18520)
Updating files:  95% (17594/18520)
Updating files:  96% (17780/18520)
Updating files:  97% (17965/18520)
Updating files:  98% (18150/18520)
Updating files:  99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 19:26.49 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 19:26.49 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 19:26.49 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-25 19:26.49 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-25 19:26.49 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 19:26.51 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 19:26.51 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (8424 kB/s)
- Reading package lists...
2026-03-25 19:26.51 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-25 19:26.51 ---> using "60e129f7398974b5fa5afc8f56ec09bd24a9182f5e9834464bfc959db1aa6b14" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocaml-compiler.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 8 packages
  - recompile base-domains        base           [uses ocaml]
  - recompile base-effects        base           [uses ocaml]
  - recompile base-nnp            base           [uses base-domains]
  - recompile ocaml               5.4.0          [uses ocaml-base-compiler]
  - recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
  - recompile ocaml-compiler      5.4.0 (pinned)
  - recompile ocaml-config        3              [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3          [uses ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0
-> installed ocaml-base-compiler.5.4.0
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:26.51 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall eigen.0.1.6;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'eigen.0.1.6' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
eigen.0.1.6 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
  - install csexp             1.5.2  [required by dune-configurator]
  - install ctypes            0.24.0 [required by eigen]
  - install dune              3.22.0 [required by eigen]
  - install dune-configurator 3.22.0 [required by ctypes]
  - install eigen             0.1.6
  - install integers          0.7.0  [required by ctypes]
  - install stdlib-shims      0.3.0  [required by integers]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved eigen.0.1.6  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.22.0
-> installed csexp.1.5.2
-> installed stdlib-shims.0.3.0
-> installed integers.0.7.0
-> installed dune-configurator.3.22.0
-> installed ctypes.0.24.0
-> installed eigen.0.1.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:30.06 ---> saved as "426a2739ae20e91d2d71e2f8b3363eabb5f1c70115255a9ab5312454fc06a848"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test eigen.0.1.6) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile eigen 0.1.6

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved eigen.0.1.6  (https://opam.ocaml.org/cache)
-> removed   eigen.0.1.6
-> installed eigen.0.1.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:33.03 ---> saved as "5e206903379e53e505e120980f778334e72d63c9cd6dff90bad280b8db23fae4"

/home/opam: (run (shell  "opam reinstall --with-test --verbose eigen.0.1.6;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'eigen.0.1.6' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile eigen 0.1.6

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [eigen.0.1.6: extract]
-> retrieved eigen.0.1.6  (cached)
Processing  2/4: [eigen: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "eigen" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/eigen.0.1.6)
- (cd _build/default/eigen_cpp && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -fPIC -ansi -O3 -std=c++11 -pedantic -Wall -Wno-invalid-partial-specialization -Wno-extern-c-compat -Wno-c++11-long-long -Ofast -march=native -mfpmath=sse -funroll-loops -ffast-math -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/ctypes -I /home/opam/.opam/5.4/lib/integers -I /home/opam/.opam/5.4/lib/stdlib-shims -I lib -I lib/unsupported -o eigen_spmat.o -c lib/eigen_spmat.cpp)
- In file included from lib/Eigen/Core:420,
-                  from lib/eigen_spmat.cpp:7:
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::linspaced_op<long int, long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> > >, Eigen::internal::assign_op<long int, long int> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::linspaced_op<long int, long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> > >, Eigen::internal::assign_op<long int, long int>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<linspaced_op<long int, long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Functor = assign_op<long int, long int>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<Eigen::internal::linspaced_op<long int, long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Functor = Eigen::internal::assign_op<long int, long int>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<linspaced_op<long int, long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Func = assign_op<long int, long int>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<linspaced_op<long int, long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Func = assign_op<long int, long int>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<linspaced_op<long int, long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >]'
-   782 |   call_assignment(dst, src, internal::assign_op<typename Dst::Scalar,typename Src::Scalar>());
-       |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/Assign.h:66:28:   required from 'Derived& Eigen::MatrixBase<Derived>::operator=(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::CwiseNullaryOp<Eigen::internal::linspaced_op<long int, long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Derived = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-    66 |   internal::call_assignment(derived(), other.derived());
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:386:20:   required from 'Derived& Eigen::DenseBase<Derived>::setLinSpaced(Eigen::Index, const Scalar&, const Scalar&) [with Derived = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; Eigen::Index = long int; Scalar = long int]'
-   386 |   return derived() = Derived::NullaryExpr(newSize, internal::linspaced_op<Scalar,PacketScalar>(low,high,newSize));
-       |          ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:406:22:   required from 'Derived& Eigen::DenseBase<Derived>::setLinSpaced(const Scalar&, const Scalar&) [with Derived = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; Scalar = long int]'
-   406 |   return setLinSpaced(size(), low, high);
-       |          ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/SparseCore/SparseMatrix.h:748:76:   required from 'void Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>::setIdentity() [with _Scalar = float; int _Options = 1; _StorageIndex = long int]'
-   748 |       Eigen::Map<IndexVector>(this->m_data.indexPtr(), rows()).setLinSpaced(0, StorageIndex(rows()-1));
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_spmat_s.cpp:39:19:   required from here
-    39 |   (*x).setIdentity();
-       |   ~~~~~~~~~~~~~~~~^~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, 1> > >, Eigen::internal::assign_op<float, float> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, 1> > >, Eigen::internal::assign_op<float, float>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<scalar_constant_op<float>, Eigen::Matrix<float, -1, 1> >; Functor = assign_op<float, float>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, 1> >; Functor = Eigen::internal::assign_op<float, float>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<float>, Eigen::Matrix<float, -1, 1> >; Func = assign_op<float, float>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<float>, Eigen::Matrix<float, -1, 1> >; Func = assign_op<float, float>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<float>, Eigen::Matrix<float, -1, 1> >]'
-   782 |   call_assignment(dst, src, internal::assign_op<typename Dst::Scalar,typename Src::Scalar>());
-       |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/Assign.h:66:28:   required from 'Derived& Eigen::MatrixBase<Derived>::operator=(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, 1> >; Derived = Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-    66 |   internal::call_assignment(derived(), other.derived());
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:327:20:   required from 'Derived& Eigen::DenseBase<Derived>::setConstant(const Scalar&) [with Derived = Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> >; Scalar = float]'
-   327 |   return derived() = Constant(rows(), cols(), val);
-       |          ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:627:10:   required from 'Derived& Eigen::DenseBase<Derived>::setOnes() [with Derived = Eigen::Map<Eigen::Matrix<float, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-   627 |   return setConstant(Scalar(1));
-       |          ^~~~~~~~~~~
- lib/Eigen/src/SparseCore/SparseMatrix.h:749:72:   required from 'void Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>::setIdentity() [with _Scalar = float; int _Options = 1; _StorageIndex = long int]'
-   749 |       Eigen::Map<ScalarVector>(this->m_data.valuePtr(), rows()).setOnes();
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
- lib/eigen_spmat_s.cpp:39:19:   required from here
-    39 |   (*x).setIdentity();
-       |   ~~~~~~~~~~~~~~~~^~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<double>, Eigen::Matrix<double, -1, 1> > >, Eigen::internal::assign_op<double, double> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<double>, Eigen::Matrix<double, -1, 1> > >, Eigen::internal::assign_op<double, double>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<scalar_constant_op<double>, Eigen::Matrix<double, -1, 1> >; Functor = assign_op<double, double>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<double>, Eigen::Matrix<double, -1, 1> >; Functor = Eigen::internal::assign_op<double, double>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<double>, Eigen::Matrix<double, -1, 1> >; Func = assign_op<double, double>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<double>, Eigen::Matrix<double, -1, 1> >; Func = assign_op<double, double>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<double>, Eigen::Matrix<double, -1, 1> >]'
-   782 |   call_assignment(dst, src, internal::assign_op<typename Dst::Scalar,typename Src::Scalar>());
-       |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/Assign.h:66:28:   required from 'Derived& Eigen::MatrixBase<Derived>::operator=(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<double>, Eigen::Matrix<double, -1, 1> >; Derived = Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-    66 |   internal::call_assignment(derived(), other.derived());
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:327:20:   required from 'Derived& Eigen::DenseBase<Derived>::setConstant(const Scalar&) [with Derived = Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> >; Scalar = double]'
-   327 |   return derived() = Constant(rows(), cols(), val);
-       |          ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:627:10:   required from 'Derived& Eigen::DenseBase<Derived>::setOnes() [with Derived = Eigen::Map<Eigen::Matrix<double, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-   627 |   return setConstant(Scalar(1));
-       |          ^~~~~~~~~~~
- lib/Eigen/src/SparseCore/SparseMatrix.h:749:72:   required from 'void Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>::setIdentity() [with _Scalar = double; int _Options = 1; _StorageIndex = long int]'
-   749 |       Eigen::Map<ScalarVector>(this->m_data.valuePtr(), rows()).setOnes();
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
- lib/eigen_spmat_d.cpp:39:19:   required from here
-    39 |   (*x).setIdentity();
-       |   ~~~~~~~~~~~~~~~~^~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, 1> > >, Eigen::internal::assign_op<std::complex<float>, std::complex<float> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, 1> > >, Eigen::internal::assign_op<std::complex<float>, std::complex<float> >, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<scalar_constant_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, 1> >; Functor = assign_op<std::complex<float>, std::complex<float> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, 1> >; Functor = Eigen::internal::assign_op<std::complex<float>, std::complex<float> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, 1> >; Func = assign_op<std::complex<float>, std::complex<float> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, 1> >; Func = assign_op<std::complex<float>, std::complex<float> >; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, 1> >]'
-   782 |   call_assignment(dst, src, internal::assign_op<typename Dst::Scalar,typename Src::Scalar>());
-       |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/Assign.h:66:28:   required from 'Derived& Eigen::MatrixBase<Derived>::operator=(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, 1> >; Derived = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-    66 |   internal::call_assignment(derived(), other.derived());
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:327:20:   required from 'Derived& Eigen::DenseBase<Derived>::setConstant(const Scalar&) [with Derived = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> >; Scalar = std::complex<float>]'
-   327 |   return derived() = Constant(rows(), cols(), val);
-       |          ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:627:10:   required from 'Derived& Eigen::DenseBase<Derived>::setOnes() [with Derived = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-   627 |   return setConstant(Scalar(1));
-       |          ^~~~~~~~~~~
- lib/Eigen/src/SparseCore/SparseMatrix.h:749:72:   required from 'void Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>::setIdentity() [with _Scalar = std::complex<float>; int _Options = 1; _StorageIndex = long int]'
-   749 |       Eigen::Map<ScalarVector>(this->m_data.valuePtr(), rows()).setOnes();
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
- lib/eigen_spmat_c.cpp:53:19:   required from here
-    53 |   (*x).setIdentity();
-       |   ~~~~~~~~~~~~~~~~^~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, 1> > >, Eigen::internal::assign_op<std::complex<double>, std::complex<double> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, 1> > >, Eigen::internal::assign_op<std::complex<double>, std::complex<double> >, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<scalar_constant_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, 1> >; Functor = assign_op<std::complex<double>, std::complex<double> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, 1> >; Functor = Eigen::internal::assign_op<std::complex<double>, std::complex<double> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, 1> >; Func = assign_op<std::complex<double>, std::complex<double> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, 1> >; Func = assign_op<std::complex<double>, std::complex<double> >; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, 1> >]'
-   782 |   call_assignment(dst, src, internal::assign_op<typename Dst::Scalar,typename Src::Scalar>());
-       |   ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/Assign.h:66:28:   required from 'Derived& Eigen::MatrixBase<Derived>::operator=(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, 1> >; Derived = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-    66 |   internal::call_assignment(derived(), other.derived());
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:327:20:   required from 'Derived& Eigen::DenseBase<Derived>::setConstant(const Scalar&) [with Derived = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> >; Scalar = std::complex<double>]'
-   327 |   return derived() = Constant(rows(), cols(), val);
-       |          ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:627:10:   required from 'Derived& Eigen::DenseBase<Derived>::setOnes() [with Derived = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-   627 |   return setConstant(Scalar(1));
-       |          ^~~~~~~~~~~
- lib/Eigen/src/SparseCore/SparseMatrix.h:749:72:   required from 'void Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>::setIdentity() [with _Scalar = std::complex<double>; int _Options = 1; _StorageIndex = long int]'
-   749 |       Eigen::Map<ScalarVector>(this->m_data.valuePtr(), rows()).setOnes();
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
- lib/eigen_spmat_z.cpp:53:19:   required from here
-    53 |   (*x).setIdentity();
-       |   ~~~~~~~~~~~~~~~~^~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> > >, Eigen::internal::assign_op<long int, long int> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> > >, Eigen::internal::assign_op<long int, long int>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<scalar_constant_op<long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Functor = assign_op<long int, long int>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Functor = Eigen::internal::assign_op<long int, long int>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; Src = Eigen::CwiseNullaryOp<scalar_constant_op<long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Func = assign_op<long int, long int>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/Eigen/src/Core/Assign.h:66:28:   required from 'Derived& Eigen::MatrixBase<Derived>::operator=(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<long int>, Eigen::Matrix<long int, -1, 1, 0, -1, 1> >; Derived = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-    66 |   internal::call_assignment(derived(), other.derived());
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:327:20:   required from 'Derived& Eigen::DenseBase<Derived>::setConstant(const Scalar&) [with Derived = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >; Scalar = long int]'
-   327 |   return derived() = Constant(rows(), cols(), val);
-       |          ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/CwiseNullaryOp.h:501:10:   required from 'Derived& Eigen::DenseBase<Derived>::setZero() [with Derived = Eigen::Map<Eigen::Matrix<long int, -1, 1, 0, -1, 1>, 0, Eigen::Stride<0, 0> >]'
-   501 |   return setConstant(Scalar(0));
-       |          ^~~~~~~~~~~
- lib/Eigen/src/SparseCore/SparseMatrix.h:1083:73:   required from 'Eigen::SparseMatrix<_Scalar, _Options, _StorageIndex>& Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>::operator=(const Eigen::SparseMatrixBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::SparseMatrix<float, 1, long int>, 1, -1, true>; _Scalar = float; int _Options = 1; _StorageIndex = long int]'
-  1083 |     Eigen::Map<IndexVector> (dest.m_outerIndex,dest.outerSize()).setZero();
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
- lib/Eigen/src/SparseCore/SparseMatrix.h:684:15:   required from 'Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>::SparseMatrix(const Eigen::SparseMatrixBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::SparseMatrix<float, 1, long int>, 1, -1, true>; _Scalar = float; int _Options = 1; _StorageIndex = long int]'
-   684 |         *this = other.derived();
-       |         ~~~~~~^~~~~~~~~~~~~~~~~
- lib/eigen_spmat_s.cpp:134:50:   required from here
-   134 |   spmat_s* x = new spmat_s((c_to_eigen(m)).row(i));
-       |                                                  ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- cc1plus: note: unrecognized command-line option '-Wno-c++11-long-long' may have been intended to silence earlier diagnostics
- cc1plus: note: unrecognized command-line option '-Wno-extern-c-compat' may have been intended to silence earlier diagnostics
- cc1plus: note: unrecognized command-line option '-Wno-invalid-partial-specialization' may have been intended to silence earlier diagnostics
- (cd _build/default/eigen_cpp && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -fPIC -ansi -O3 -std=c++11 -pedantic -Wall -Wno-invalid-partial-specialization -Wno-extern-c-compat -Wno-c++11-long-long -Ofast -march=native -mfpmath=sse -funroll-loops -ffast-math -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/ctypes -I /home/opam/.opam/5.4/lib/integers -I /home/opam/.opam/5.4/lib/stdlib-shims -I lib -I lib/unsupported -o eigen_dsmat.o -c lib/eigen_dsmat.cpp)
- In file included from lib/Eigen/Core:420,
-                  from lib/eigen_dsmat.cpp:7:
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Matrix<float, -1, -1, 1> >, Eigen::internal::evaluator<Eigen::Matrix<float, -1, -1, 1> >, Eigen::internal::assign_op<float, float> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Matrix<float, -1, -1, 1> >, Eigen::internal::evaluator<Eigen::Matrix<float, -1, -1, 1> >, Eigen::internal::assign_op<float, float>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix<float, -1, -1, 1>; SrcXprType = Eigen::Matrix<float, -1, -1, 1>; Functor = assign_op<float, float>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix<float, -1, -1, 1>; SrcXprType = Eigen::Matrix<float, -1, -1, 1>; Functor = Eigen::internal::assign_op<float, float>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<float, -1, -1, 1>; Src = Eigen::Matrix<float, -1, -1, 1>; Func = assign_op<float, float>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Matrix<float, -1, -1, 1>; Derived = Eigen::Matrix<float, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/Matrix.h:278:27:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>&&) [with _Scalar = float; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   278 |         Base::_set_noalias(other);
-       |         ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/eigen_dsmat_s.cpp:91:35:   required from here
-    91 |   dsmat_s z = Map<dsmat_s>(y, m, n);
-       |                                   ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<float> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<float>, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<float>, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Functor = swap_assign_op<float>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Functor = Eigen::internal::swap_assign_op<float>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Func = swap_assign_op<float>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Func = swap_assign_op<float>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/DenseBase.h:418:22:   required from 'void Eigen::DenseBase<Derived>::swap(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Derived = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>]'
-   418 |       call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
-       |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_dsmat_s.cpp:118:16:   required from here
-   118 |   x.row(i).swap(x.row(j));
-       |   ~~~~~~~~~~~~~^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<float> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<float>, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<float>, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Functor = swap_assign_op<float>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Functor = Eigen::internal::swap_assign_op<float>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Func = swap_assign_op<float>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Func = swap_assign_op<float>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/DenseBase.h:418:22:   required from 'void Eigen::DenseBase<Derived>::swap(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Derived = Eigen::Block<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'
-   418 |       call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
-       |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_dsmat_s.cpp:124:16:   required from here
-   124 |   x.col(i).swap(x.col(j));
-       |   ~~~~~~~~~~~~~^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<double> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<double>, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<double>, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Functor = swap_assign_op<double>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Functor = Eigen::internal::swap_assign_op<double>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Func = swap_assign_op<double>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Func = swap_assign_op<double>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/DenseBase.h:418:22:   required from 'void Eigen::DenseBase<Derived>::swap(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Derived = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>]'
-   418 |       call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
-       |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_dsmat_d.cpp:104:16:   required from here
-   104 |   x.row(i).swap(x.row(j));
-       |   ~~~~~~~~~~~~~^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<double> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<double>, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<double>, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Functor = swap_assign_op<double>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Functor = Eigen::internal::swap_assign_op<double>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Func = swap_assign_op<double>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Func = swap_assign_op<double>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/DenseBase.h:418:22:   required from 'void Eigen::DenseBase<Derived>::swap(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Derived = Eigen::Block<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'
-   418 |       call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
-       |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_dsmat_d.cpp:110:16:   required from here
-   110 |   x.col(i).swap(x.col(j));
-       |   ~~~~~~~~~~~~~^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<std::complex<float> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<std::complex<float> >, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<std::complex<float> >, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Functor = swap_assign_op<std::complex<float> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Functor = Eigen::internal::swap_assign_op<std::complex<float> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Func = swap_assign_op<std::complex<float> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Func = swap_assign_op<std::complex<float> >; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/DenseBase.h:418:22:   required from 'void Eigen::DenseBase<Derived>::swap(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Derived = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>]'
-   418 |       call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
-       |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_dsmat_c.cpp:124:16:   required from here
-   124 |   x.row(i).swap(x.row(j));
-       |   ~~~~~~~~~~~~~^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<std::complex<float> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<std::complex<float> >, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<std::complex<float> >, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Functor = swap_assign_op<std::complex<float> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Functor = Eigen::internal::swap_assign_op<std::complex<float> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Func = swap_assign_op<std::complex<float> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Func = swap_assign_op<std::complex<float> >; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/DenseBase.h:418:22:   required from 'void Eigen::DenseBase<Derived>::swap(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Derived = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'
-   418 |       call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
-       |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_dsmat_c.cpp:130:16:   required from here
-   130 |   x.col(i).swap(x.col(j));
-       |   ~~~~~~~~~~~~~^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<std::complex<double> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<std::complex<double> >, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true> >, Eigen::internal::swap_assign_op<std::complex<double> >, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Functor = swap_assign_op<std::complex<double> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Functor = Eigen::internal::swap_assign_op<std::complex<double> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Func = swap_assign_op<std::complex<double> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Func = swap_assign_op<std::complex<double> >; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/DenseBase.h:418:22:   required from 'void Eigen::DenseBase<Derived>::swap(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>; Derived = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, 1, -1, true>]'
-   418 |       call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
-       |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_dsmat_z.cpp:124:16:   required from here
-   124 |   x.row(i).swap(x.row(j));
-       |   ~~~~~~~~~~~~~^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<std::complex<double> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<std::complex<double> >, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::swap_assign_op<std::complex<double> >, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Functor = swap_assign_op<std::complex<double> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; SrcXprType = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Functor = Eigen::internal::swap_assign_op<std::complex<double> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Func = swap_assign_op<std::complex<double> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Src = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Func = swap_assign_op<std::complex<double> >; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/DenseBase.h:418:22:   required from 'void Eigen::DenseBase<Derived>::swap(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>; Derived = Eigen::Block<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >, -1, 1, false>]'
-   418 |       call_assignment(derived(), other.const_cast_derived(), internal::swap_assign_op<Scalar>());
-       |       ~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_dsmat_z.cpp:130:16:   required from here
-   130 |   x.col(i).swap(x.col(j));
-       |   ~~~~~~~~~~~~~^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Matrix<float, -1, -1, 1> >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> > >, Eigen::internal::assign_op<float, float> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Matrix<float, -1, -1, 1> >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> > >, Eigen::internal::assign_op<float, float>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix<float, -1, -1, 1>; SrcXprType = Eigen::CwiseNullaryOp<scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> >; Functor = assign_op<float, float>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix<float, -1, -1, 1>; SrcXprType = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> >; Functor = Eigen::internal::assign_op<float, float>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<float, -1, -1, 1>; Src = Eigen::CwiseNullaryOp<scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> >; Func = assign_op<float, float>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> >; Derived = Eigen::Matrix<float, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> >; OtherDerived = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> >; Derived = Eigen::Matrix<float, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<float>, Eigen::Matrix<float, -1, -1, 1> >; _Scalar = float; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_s.cpp:45:47:   required from here
-    45 |   dsmat_s* x = new dsmat_s(dsmat_s::Ones(m, n));
-       |                                               ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Matrix<float, -1, -1, 1> >, Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::assign_op<float, float> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Matrix<float, -1, -1, 1> >, Eigen::internal::evaluator<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >, Eigen::internal::assign_op<float, float>, 0>'
- ...TRUNCATED BY DUNE...
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<double, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_d.cpp:150:45:   required from here
-   150 |   return eigen_to_c(*new dsmat_d(x.inverse()));
-       |                                             ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::swap_assign_op<std::complex<float> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::swap_assign_op<std::complex<float> >, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::swap_assign_op<std::complex<float> >, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; Functor = swap_assign_op<std::complex<float> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op<std::complex<float> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; Func = swap_assign_op<std::complex<float> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/Eigen/src/LU/InverseImpl.h:310:60:   required from 'static void Eigen::internal::Assignment<DstXprType, Eigen::Inverse<Rhs>, Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>&) [with DstXprType = Eigen::Matrix<std::complex<float>, -1, -1, 1>; XprType = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; typename DstXprType::Scalar = std::complex<float>; typename SrcXprType::Scalar = std::complex<float>]'
-   310 |     compute_inverse<ActualXprTypeCleanded, DstXprType>::run(actual_xpr, dst);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<std::complex<float>, -1, -1, 1>; Src = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Func = assign_op<std::complex<float>, std::complex<float> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<std::complex<float>, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<std::complex<float>, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; _Scalar = std::complex<float>; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_c.cpp:170:45:   required from here
-   170 |   return eigen_to_c(*new dsmat_c(x.inverse()));
-       |                                             ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::swap_assign_op<std::complex<double> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::swap_assign_op<std::complex<double> >, 1>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/Swap.h:19:7:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::swap_assign_op<std::complex<double> >, 0>'
-    19 | class generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, Specialized>
-       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; Functor = swap_assign_op<std::complex<double> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; Functor = Eigen::internal::swap_assign_op<std::complex<double> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; Func = swap_assign_op<std::complex<double> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/Eigen/src/LU/InverseImpl.h:310:60:   required from 'static void Eigen::internal::Assignment<DstXprType, Eigen::Inverse<Rhs>, Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>&) [with DstXprType = Eigen::Matrix<std::complex<double>, -1, -1, 1>; XprType = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; typename DstXprType::Scalar = std::complex<double>; typename SrcXprType::Scalar = std::complex<double>]'
-   310 |     compute_inverse<ActualXprTypeCleanded, DstXprType>::run(actual_xpr, dst);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<std::complex<double>, -1, -1, 1>; Src = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Func = assign_op<std::complex<double>, std::complex<double> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<std::complex<double>, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<std::complex<double>, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; _Scalar = std::complex<double>; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_z.cpp:170:45:   required from here
-   170 |   return eigen_to_c(*new dsmat_z(x.inverse()));
-       |                                             ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<float, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<float>, Eigen::Matrix<float, -1, -1, 1> >, 1, -1, false> >, Eigen::internal::assign_op<float, float> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<float, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<float>, Eigen::Matrix<float, -1, -1, 1> >, 1, -1, false> >, Eigen::internal::assign_op<float, float>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<float, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<float>, Eigen::Matrix<float, -1, -1, 1> >, 1, -1, false>; Functor = assign_op<float, float>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<float, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<float>, Eigen::Matrix<float, -1, -1, 1> >, 1, -1, false>; Functor = Eigen::internal::assign_op<float, float>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Matrix<float, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<float>, Eigen::Matrix<float, -1, -1, 1> >, 1, -1, false>; Func = assign_op<float, float>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Matrix<float, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<float>, Eigen::Matrix<float, -1, -1, 1> >, 1, -1, false>; Func = assign_op<float, float>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/Eigen/src/LU/InverseImpl.h:310:60:   required from 'static void Eigen::internal::Assignment<DstXprType, Eigen::Inverse<Rhs>, Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>&) [with DstXprType = Eigen::Matrix<float, -1, -1, 1>; XprType = Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; typename DstXprType::Scalar = float; typename SrcXprType::Scalar = float]'
-   310 |     compute_inverse<ActualXprTypeCleanded, DstXprType>::run(actual_xpr, dst);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<float, -1, -1, 1>; Src = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Func = assign_op<float, float>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<float, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<float, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; _Scalar = float; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_s.cpp:162:45:   required from here
-   162 |   return eigen_to_c(*new dsmat_s(x.inverse()));
-       |                                             ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<double, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<double>, Eigen::Matrix<double, -1, -1, 1> >, 1, -1, false> >, Eigen::internal::assign_op<double, double> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<double, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<double>, Eigen::Matrix<double, -1, -1, 1> >, 1, -1, false> >, Eigen::internal::assign_op<double, double>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<double, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<double>, Eigen::Matrix<double, -1, -1, 1> >, 1, -1, false>; Functor = assign_op<double, double>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<double, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<double>, Eigen::Matrix<double, -1, -1, 1> >, 1, -1, false>; Functor = Eigen::internal::assign_op<double, double>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Matrix<double, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<double>, Eigen::Matrix<double, -1, -1, 1> >, 1, -1, false>; Func = assign_op<double, double>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Matrix<double, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<double>, Eigen::Matrix<double, -1, -1, 1> >, 1, -1, false>; Func = assign_op<double, double>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/Eigen/src/LU/InverseImpl.h:310:60:   required from 'static void Eigen::internal::Assignment<DstXprType, Eigen::Inverse<Rhs>, Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>&) [with DstXprType = Eigen::Matrix<double, -1, -1, 1>; XprType = Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; typename DstXprType::Scalar = double; typename SrcXprType::Scalar = double]'
-   310 |     compute_inverse<ActualXprTypeCleanded, DstXprType>::run(actual_xpr, dst);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<double, -1, -1, 1>; Src = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Func = assign_op<double, double>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<double, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<double, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<double, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_d.cpp:150:45:   required from here
-   150 |   return eigen_to_c(*new dsmat_d(x.inverse()));
-       |                                             ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, -1, 1> >, 1, -1, false> >, Eigen::internal::assign_op<std::complex<float>, std::complex<float> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, -1, 1> >, 1, -1, false> >, Eigen::internal::assign_op<std::complex<float>, std::complex<float> >, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, -1, 1> >, 1, -1, false>; Functor = assign_op<std::complex<float>, std::complex<float> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, -1, 1> >, 1, -1, false>; Functor = Eigen::internal::assign_op<std::complex<float>, std::complex<float> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, -1, 1> >, 1, -1, false>; Func = assign_op<std::complex<float>, std::complex<float> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<std::complex<float> >, Eigen::Matrix<std::complex<float>, -1, -1, 1> >, 1, -1, false>; Func = assign_op<std::complex<float>, std::complex<float> >; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/Eigen/src/LU/InverseImpl.h:310:60:   required from 'static void Eigen::internal::Assignment<DstXprType, Eigen::Inverse<Rhs>, Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>&) [with DstXprType = Eigen::Matrix<std::complex<float>, -1, -1, 1>; XprType = Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; typename DstXprType::Scalar = std::complex<float>; typename SrcXprType::Scalar = std::complex<float>]'
-   310 |     compute_inverse<ActualXprTypeCleanded, DstXprType>::run(actual_xpr, dst);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<std::complex<float>, -1, -1, 1>; Src = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Func = assign_op<std::complex<float>, std::complex<float> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<std::complex<float>, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<std::complex<float>, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<float>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; _Scalar = std::complex<float>; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_c.cpp:170:45:   required from here
-   170 |   return eigen_to_c(*new dsmat_c(x.inverse()));
-       |                                             ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, -1, 1> >, 1, -1, false> >, Eigen::internal::assign_op<std::complex<double>, std::complex<double> > >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false> >, Eigen::internal::evaluator<Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, -1, 1> >, 1, -1, false> >, Eigen::internal::assign_op<std::complex<double>, std::complex<double> >, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, -1, 1> >, 1, -1, false>; Functor = assign_op<std::complex<double>, std::complex<double> >]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; SrcXprType = Eigen::Block<const Eigen::CwiseNullaryOp<Eigen::internal::scalar_identity_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, -1, 1> >, 1, -1, false>; Functor = Eigen::internal::assign_op<std::complex<double>, std::complex<double> >; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, -1, 1> >, 1, -1, false>; Func = assign_op<std::complex<double>, std::complex<double> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Block<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 1, -1, false>; Src = Eigen::Block<const Eigen::CwiseNullaryOp<scalar_identity_op<std::complex<double> >, Eigen::Matrix<std::complex<double>, -1, -1, 1> >, 1, -1, false>; Func = assign_op<std::complex<double>, std::complex<double> >; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/Eigen/src/LU/InverseImpl.h:310:60:   required from 'static void Eigen::internal::Assignment<DstXprType, Eigen::Inverse<Rhs>, Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>&) [with DstXprType = Eigen::Matrix<std::complex<double>, -1, -1, 1>; XprType = Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; typename DstXprType::Scalar = std::complex<double>; typename SrcXprType::Scalar = std::complex<double>]'
-   310 |     compute_inverse<ActualXprTypeCleanded, DstXprType>::run(actual_xpr, dst);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<std::complex<double>, -1, -1, 1>; Src = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Func = assign_op<std::complex<double>, std::complex<double> >]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<std::complex<double>, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<std::complex<double>, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<std::complex<double>, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; _Scalar = std::complex<double>; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_z.cpp:170:45:   required from here
-   170 |   return eigen_to_c(*new dsmat_z(x.inverse()));
-       |                                             ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h: In instantiation of 'struct Eigen::internal::copy_using_evaluator_traits<Eigen::internal::evaluator<Eigen::Matrix<bool, -1, 1, 0, -1, 1> >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<bool>, Eigen::Matrix<bool, -1, 1, 0, -1, 1> > >, Eigen::internal::assign_op<bool, bool> >':
- lib/Eigen/src/Core/AssignEvaluator.h:607:49:   required from 'class Eigen::internal::generic_dense_assignment_kernel<Eigen::internal::evaluator<Eigen::Matrix<bool, -1, 1, 0, -1, 1> >, Eigen::internal::evaluator<Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<bool>, Eigen::Matrix<bool, -1, 1, 0, -1, 1> > >, Eigen::internal::assign_op<bool, bool>, 0>'
-   607 |   typedef typename AssignmentTraits::PacketType PacketType;
-       |                                                 ^~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:739:10:   required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix<bool, -1, 1, 0, -1, 1>; SrcXprType = Eigen::CwiseNullaryOp<scalar_constant_op<bool>, Eigen::Matrix<bool, -1, 1, 0, -1, 1> >; Functor = assign_op<bool, bool>]'
-   739 |   Kernel kernel(dstEvaluator, srcEvaluator, func, dst.const_cast_derived());
-       |          ^~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:879:31:   required from 'static void Eigen::internal::Assignment<DstXprType, SrcXprType, Functor, Eigen::internal::Dense2Dense, Weak>::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix<bool, -1, 1, 0, -1, 1>; SrcXprType = Eigen::CwiseNullaryOp<Eigen::internal::scalar_constant_op<bool>, Eigen::Matrix<bool, -1, 1, 0, -1, 1> >; Functor = Eigen::internal::assign_op<bool, bool>; Weak = void]'
-   879 |     call_dense_assignment_loop(dst, src, func);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<bool, -1, 1, 0, -1, 1>; Src = Eigen::CwiseNullaryOp<scalar_constant_op<bool>, Eigen::Matrix<bool, -1, 1, 0, -1, 1> >; Func = assign_op<bool, bool>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:804:27:   required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type) [with Dst = Eigen::Matrix<bool, -1, 1, 0, -1, 1>; Src = Eigen::CwiseNullaryOp<scalar_constant_op<bool>, Eigen::Matrix<bool, -1, 1, 0, -1, 1> >; Func = assign_op<bool, bool>; typename enable_if<(! evaluator_assume_aliasing<Src>::value), void*>::type = void*; typename evaluator_traits<SrcXprType>::Shape = Eigen::DenseShape]'
-   804 |   call_assignment_no_alias(dst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:782:18:   [ skipping 27 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/Eigen/src/LU/InverseImpl.h:310:60:   required from 'static void Eigen::internal::Assignment<DstXprType, Eigen::Inverse<Rhs>, Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op<typename DstXprType::Scalar, typename SrcXprType::Scalar>&) [with DstXprType = Eigen::Matrix<float, -1, -1, 1>; XprType = Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; typename DstXprType::Scalar = float; typename SrcXprType::Scalar = float]'
-   310 |     compute_inverse<ActualXprTypeCleanded, DstXprType>::run(actual_xpr, dst);
-       |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/AssignEvaluator.h:836:49:   required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix<float, -1, -1, 1>; Src = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Func = assign_op<float, float>]'
-   836 |   Assignment<ActualDstTypeCleaned,Src,Func>::run(actualDst, src, func);
-       |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:728:41:   required from 'Derived& Eigen::PlainObjectBase<Derived>::_set_noalias(const Eigen::DenseBase<OtherDerived>&) [with OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<float, -1, -1, 1>]'
-   728 |       internal::call_assignment_no_alias(this->derived(), other.derived(), internal::assign_op<Scalar,typename OtherDerived::Scalar>());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/Eigen/src/Core/PlainObjectBase.h:812:25:   required from 'void Eigen::PlainObjectBase<Derived>::_init1(const Eigen::DenseBase<ElseDerived>&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; OtherDerived = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix<float, -1, -1, 1>]'
-   812 |       this->_set_noalias(other);
-       |       ~~~~~~~~~~~~~~~~~~^~~~~~~
- lib/Eigen/src/Core/Matrix.h:296:31:   required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Inverse<Eigen::Map<Eigen::Matrix<float, -1, -1, 1>, 0, Eigen::Stride<0, 0> > >; _Scalar = float; int _Rows = -1; int _Cols = -1; int _Options = 1; int _MaxRows = -1; int _MaxCols = -1]'
-   296 |       Base::template _init1<T>(x);
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~^~~
- lib/eigen_dsmat_s.cpp:162:45:   required from here
-   162 |   return eigen_to_c(*new dsmat_s(x.inverse()));
-       |                                             ^
- lib/Eigen/src/Core/AssignEvaluator.h:86:63: warning: enum constant in boolean context [-Wint-in-bool-context]
-    86 |     MayLinearVectorize = bool(MightVectorize) && MayLinearize && DstHasDirectAccess
-       |                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
- cc1plus: note: unrecognized command-line option '-Wno-c++11-long-long' may have been intended to silence earlier diagnostics
- cc1plus: note: unrecognized command-line option '-Wno-extern-c-compat' may have been intended to silence earlier diagnostics
- cc1plus: note: unrecognized command-line option '-Wno-invalid-partial-specialization' may have been intended to silence earlier diagnostics
- (cd _build/default/eigen_cpp && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -fPIC -ansi -O3 -std=c++11 -pedantic -Wall -Wno-invalid-partial-specialization -Wno-extern-c-compat -Wno-c++11-long-long -Ofast -march=native -mfpmath=sse -funroll-loops -ffast-math -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/ctypes -I /home/opam/.opam/5.4/lib/integers -I /home/opam/.opam/5.4/lib/stdlib-shims -I lib -I lib/unsupported -o eigen_tensor.o -c lib/eigen_tensor.cpp)
- In file included from lib/unsupported/Eigen/CXX11/Tensor:105,
-                  from lib/eigen_tensor.cpp:8:
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h: In instantiation of 'struct Eigen::TensorEvaluator<const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, Eigen::DefaultDevice>':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h:96:65:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorForcedEvalOp<const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, Eigen::MakePointer>, Eigen::DefaultDevice>'
-    96 |   typedef typename TensorEvaluator<ArgType, Device>::Dimensions Dimensions;
-       |                                                                 ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h:61:42:   required from 'std::ostream& Eigen::operator<<(std::ostream&, const TensorBase<Derived, 0>&) [with T = TensorMap<Tensor<float, 4, 1> >; std::ostream = std::basic_ostream<char>]'
-    61 |   typedef typename Evaluator::Dimensions Dimensions;
-       |                                          ^~~~~~~~~~
- lib/eigen_tensor_s.cpp:19:16:   required from here
-    19 |   std::cout << x << std::endl;
-       |                ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h:162:66: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-   162 |     PacketAccess = (internal::unpacket_traits<PacketReturnType>::size > 1),
-       |                                                                  ^~~~
- In file included from lib/unsupported/Eigen/CXX11/Tensor:133:
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h: In instantiation of 'const int Eigen::TensorEvaluator<const Eigen::TensorForcedEvalOp<const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, Eigen::MakePointer>, Eigen::DefaultDevice>::PacketSize':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h:104:21:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorForcedEvalOp<const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, Eigen::MakePointer>, Eigen::DefaultDevice>'
-   104 |     PacketAccess = (PacketSize > 1),
-       |                     ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h:61:42:   required from 'std::ostream& Eigen::operator<<(std::ostream&, const TensorBase<Derived, 0>&) [with T = TensorMap<Tensor<float, 4, 1> >; std::ostream = std::basic_ostream<char>]'
-    61 |   typedef typename Evaluator::Dimensions Dimensions;
-       |                                          ^~~~~~~~~~
- lib/eigen_tensor_s.cpp:19:16:   required from here
-    19 |   std::cout << x << std::endl;
-       |                ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h:100:78: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-   100 |   static const int PacketSize = internal::unpacket_traits<PacketReturnType>::size;
-       |                                                                              ^~~~
- In file included from lib/unsupported/Eigen/CXX11/Tensor:113:
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h: In instantiation of 'struct Eigen::TensorContractionEvaluatorBase<Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, Eigen::DefaultDevice> >':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:572:8:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, Eigen::DefaultDevice>'
-   572 | struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgType>, Device> :
-       |        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:105:51:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::DefaultDevice>'
-   105 |     IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
-       |                                                   ^~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:96:70:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > > >, Eigen::DefaultDevice>'
-    96 |   typedef typename TensorEvaluator<RightArgType, Device>::Dimensions Dimensions;
-       |                                                                      ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h:92:66:   required from 'const bool Eigen::internal::IsVectorizable<Eigen::DefaultDevice, const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > > > >::value'
-    92 |   static const bool value = TensorEvaluator<Expression, Device>::PacketAccess;
-       |                                                                  ^~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65:   required from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >; PlainObjectType = Eigen::Tensor<float, 4, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer; Self = Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >]'
-   310 |       internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_tensor_s.cpp:35:107:   required from here
-    35 |   output = SpatialConvolution(input, kernel, row_stride, col_stride, pad_typ, row_in_stride, col_in_stride);
-       |                                                                                                           ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:124:66: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-   124 |     PacketAccess = (internal::unpacket_traits<PacketReturnType>::size > 1),
-       |                                                                  ^~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h: In instantiation of 'struct Eigen::TensorEvaluator<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, Eigen::DefaultDevice>':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:100:55:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > > >, Eigen::DefaultDevice>'
-   100 |     IsAligned = TensorEvaluator<LeftArgType, Device>::IsAligned & TensorEvaluator<RightArgType, Device>::IsAligned,
-       |                                                       ^~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h:92:66:   required from 'const bool Eigen::internal::IsVectorizable<Eigen::DefaultDevice, const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > > > >::value'
-    92 |   static const bool value = TensorEvaluator<Expression, Device>::PacketAccess;
-       |                                                                  ^~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65:   required from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >; PlainObjectType = Eigen::Tensor<float, 4, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer; Self = Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >]'
-   310 |       internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_tensor_s.cpp:35:107:   required from here
-    35 |   output = SpatialConvolution(input, kernel, row_stride, col_stride, pad_typ, row_in_stride, col_in_stride);
-       |                                                                                                           ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h:42:66: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-    42 |     PacketAccess = (internal::unpacket_traits<PacketReturnType>::size > 1),
-       |                                                                  ^~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h: In instantiation of 'struct Eigen::TensorContractionEvaluatorBase<Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> >, Eigen::DefaultDevice> >':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:572:8:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> >, Eigen::DefaultDevice>'
-   572 | struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgType>, Device> :
-       |        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:105:51:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> > >, Eigen::DefaultDevice>'
-   105 |     IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
-       |                                                   ^~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:96:70:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> > > >, Eigen::DefaultDevice>'
-    96 |   typedef typename TensorEvaluator<RightArgType, Device>::Dimensions Dimensions;
-       |                                                                      ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h:92:66:   required from 'const bool Eigen::internal::IsVectorizable<Eigen::DefaultDevice, const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> > > > >::value'
-    92 |   static const bool value = TensorEvaluator<Expression, Device>::PacketAccess;
-       |                                                                  ^~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65:   required from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> > >; PlainObjectType = Eigen::Tensor<float, 4, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer; Self = Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >]'
-   310 |       internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_tensor_s.cpp:51:135:   required from here
-    51 |   input = SpatialConvolutionBackwardInput(kernel, output, input_rows, input_cols, row_stride, col_stride, row_in_stride, col_in_stride);
-       |                                                                                                                                       ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:124:66: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-   124 |     PacketAccess = (internal::unpacket_traits<PacketReturnType>::size > 1),
-       |                                                                  ^~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h: In instantiation of 'const int Eigen::TensorEvaluator<const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer>, Eigen::DefaultDevice>::PacketSize':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h:104:21:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer>, Eigen::DefaultDevice>'
-   104 |     PacketAccess = (PacketSize > 1),
-       |                     ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:140:92:   required from 'const int Eigen::TensorContractionEvaluatorBase<Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> >, Eigen::DefaultDevice> >::LDims'
-   140 |       internal::array_size<typename TensorEvaluator<EvalLeftArgType, Device>::Dimensions>::value;
-       |                                                                                            ^~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:147:30:   required from 'struct Eigen::TensorContractionEvaluatorBase<Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> >, Eigen::DefaultDevice> >'
-   147 |   typedef array<Index, LDims - ContractDims> left_nocontract_t;
-       |                        ~~~~~~^~~~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:572:8:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> >, Eigen::DefaultDevice>'
-   572 | struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgType>, Device> :
-       |        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:105:51:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> > >, Eigen::DefaultDevice>'
-   105 |     IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
-       |                                                   ^~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:96:70:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> > > >, Eigen::DefaultDevice>'
-    96 |   typedef typename TensorEvaluator<RightArgType, Device>::Dimensions Dimensions;
-       |                                                                      ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h:92:66:   required from 'const bool Eigen::internal::IsVectorizable<Eigen::DefaultDevice, const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> > > > >::value'
-    92 |   static const bool value = TensorEvaluator<Expression, Device>::PacketAccess;
-       |                                                                  ^~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65:   required from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::MakePointer> > >; PlainObjectType = Eigen::Tensor<float, 4, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer; Self = Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >]'
-   310 |       internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_tensor_s.cpp:51:135:   required from here
-    51 |   input = SpatialConvolutionBackwardInput(kernel, output, input_rows, input_cols, row_stride, col_stride, row_in_stride, col_in_stride);
-       |                                                                                                                                       ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h:100:78: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-   100 |   static const int PacketSize = internal::unpacket_traits<PacketReturnType>::size;
-       |                                                                              ^~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h: In instantiation of 'struct Eigen::TensorContractionEvaluatorBase<Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorShufflingOp<const std::array<long int, 2>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, Eigen::DefaultDevice> >':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:572:8:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorShufflingOp<const std::array<long int, 2>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > >, Eigen::DefaultDevice>'
-   572 | struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgType>, Device> :
-       |        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:105:51:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorShufflingOp<const std::array<long int, 2>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, Eigen::DefaultDevice>'
-   105 |     IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
-       |                                                   ^~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:96:70:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorShufflingOp<const std::array<long int, 2>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > > >, Eigen::DefaultDevice>'
-    96 |   typedef typename TensorEvaluator<RightArgType, Device>::Dimensions Dimensions;
-       |                                                                      ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h:92:66:   required from 'const bool Eigen::internal::IsVectorizable<Eigen::DefaultDevice, const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorShufflingOp<const std::array<long int, 2>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > > > >::value'
-    92 |   static const bool value = TensorEvaluator<Expression, Device>::PacketAccess;
-       |                                                                  ^~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65:   required from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorShufflingOp<const std::array<long int, 2>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 4, 1> > > > >; PlainObjectType = Eigen::Tensor<float, 4, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer; Self = Eigen::TensorMap<Eigen::Tensor<float, 4, 1> >]'
-   310 |       internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_tensor_s.cpp:67:138:   required from here
-    67 |   kernel = SpatialConvolutionBackwardKernel(input, output, kernel_rows, kernel_cols, row_stride, col_stride, row_in_stride, col_in_stride);
-       |                                                                                                                                          ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:124:66: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-   124 |     PacketAccess = (internal::unpacket_traits<PacketReturnType>::size > 1),
-       |                                                                  ^~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h: In instantiation of 'struct Eigen::TensorContractionEvaluatorBase<Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >, Eigen::DefaultDevice> >':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:572:8:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >, Eigen::DefaultDevice>'
-   572 | struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgType>, Device> :
-       |        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:105:51:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >, Eigen::DefaultDevice>'
-   105 |     IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
-       |                                                   ^~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:96:70:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > >, Eigen::DefaultDevice>'
-    96 |   typedef typename TensorEvaluator<RightArgType, Device>::Dimensions Dimensions;
-       |                                                                      ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h:92:66:   required from 'const bool Eigen::internal::IsVectorizable<Eigen::DefaultDevice, const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >::value'
-    92 |   static const bool value = TensorEvaluator<Expression, Device>::PacketAccess;
-       |                                                                  ^~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65:   required from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >; PlainObjectType = Eigen::Tensor<float, 5, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer; Self = Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >]'
-   310 |       internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_tensor_s.cpp:85:90:   required from here
-    85 |   output = CuboidConvolution(input, kernel, depth_stride, row_stride, col_stride, pad_typ);
-       |                                                                                          ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:124:66: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-   124 |     PacketAccess = (internal::unpacket_traits<PacketReturnType>::size > 1),
-       |                                                                  ^~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h: In instantiation of 'struct Eigen::TensorEvaluator<const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, Eigen::DefaultDevice>':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h:97:54:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > >, Eigen::DefaultDevice>'
-    97 |     PacketAccess = TensorEvaluator<ArgType, Device>::PacketAccess,
-       |                                                      ^~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h:85:107:   required from 'const int Eigen::TensorEvaluator<const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >, Eigen::DefaultDevice>::NumDims'
-    85 |   static const int NumDims = internal::array_size<typename TensorEvaluator<ArgType, Device>::Dimensions>::value + 1;
-       |                                                                                                           ^~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h:86:34:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >, Eigen::DefaultDevice>'
-    86 |   typedef DSizes<Index, NumDims> Dimensions;
-       |                                  ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:105:51:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >, Eigen::DefaultDevice>'
-   105 |     IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
-       |                                                   ^~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h:104:107:   required from 'const int Eigen::TensorEvaluator<const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > >, Eigen::DefaultDevice>::NumDims'
-   104 |   static const int NumDims = internal::array_size<typename TensorEvaluator<ArgType, Device>::Dimensions>::value;
-       |                                                                                                           ^~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h:105:34:   [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:572:8:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >, Eigen::DefaultDevice>'
-   572 | struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgType>, Device> :
-       |        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:105:51:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >, Eigen::DefaultDevice>'
-   105 |     IsAligned = TensorEvaluator<ArgType, Device>::IsAligned,
-       |                                                   ^~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:96:70:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > >, Eigen::DefaultDevice>'
-    96 |   typedef typename TensorEvaluator<RightArgType, Device>::Dimensions Dimensions;
-       |                                                                      ^~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h:92:66:   required from 'const bool Eigen::internal::IsVectorizable<Eigen::DefaultDevice, const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >::value'
-    92 |   static const bool value = TensorEvaluator<Expression, Device>::PacketAccess;
-       |                                                                  ^~~~~~~~~~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65:   required from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >; PlainObjectType = Eigen::Tensor<float, 5, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer; Self = Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >]'
-   310 |       internal::TensorExecutor<const Assign, DefaultDevice>::run(assign, DefaultDevice());
-       |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
- lib/eigen_tensor_s.cpp:85:90:   required from here
-    85 |   output = CuboidConvolution(input, kernel, depth_stride, row_stride, col_stride, pad_typ);
-       |                                                                                          ^
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h:162:66: warning: ignoring attributes on template argument 'Eigen::PacketType<float, Eigen::DefaultDevice>::type' {aka '__m256'} [-Wignored-attributes]
-   162 |     PacketAccess = (internal::unpacket_traits<PacketReturnType>::size > 1),
-       |                                                                  ^~~~
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h: In instantiation of 'struct Eigen::TensorEvaluator<Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, Eigen::DefaultDevice>':
- lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:100:55:   required from 'struct Eigen::TensorEvaluator<const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > >, Eigen::DefaultDevice>'
- ...TRUNCATED BY DUNE...
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorContractionOp<Dimensions, LhsXprType, RhsXprType>, Device_>::TensorEvaluator(const XprType&, const Device&) [with Indices = const std::array<Eigen::IndexPair<long int>, 1>; LeftArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >; RightArgType = const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer>; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:613:22,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<NewDimensions, XprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with NewDimensions = const Eigen::DSizes<long int, 4>; ArgType = const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:113:9,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorAssignOp<LhsXprType, RhsXprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with LeftArgType = Eigen::Tensor<float, 4, 1>; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:108:7,
-     inlined from 'static void Eigen::internal::TensorExecutor<Expression, Eigen::DefaultDevice, true>::run(const Expression&, const Eigen::DefaultDevice&) [with Expression = const Eigen::TensorAssignOp<Eigen::Tensor<float, 4, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > > >]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h:56:48,
-     inlined from 'Eigen::Tensor<Scalar_, NumIndices_, Options_, IndexType>& Eigen::Tensor<Scalar_, NumIndices_, Options_, IndexType>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > >; Scalar_ = float; int NumIndices_ = 4; int Options_ = 1; IndexType_ = long int]' at lib/unsupported/Eigen/CXX11/src/Tensor/Tensor.h:417:65,
-     inlined from 'void c_eigen_tensor_d_spatial_conv_backward_input(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int)' at lib/eigen_tensor_d.cpp:63:141:
- /usr/include/c++/14/array:209:24: warning: array subscript 4294967295 is above array bounds of 'std::__array_traits<long int, 1>::_Type' {aka 'long int [1]'} [-Warray-bounds=]
-   209 |         return _M_elems[__n];
-       |                ~~~~~~~~^
- /usr/include/c++/14/array: In function 'void c_eigen_tensor_d_spatial_conv_backward_input(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int)':
- /usr/include/c++/14/array:115:55: note: while referencing 'std::array<long int, 1>::_M_elems'
-   115 |       typename __array_traits<_Tp, _Nm>::_Type        _M_elems;
-       |                                                       ^~~~~~~~
- In member function 'std::array<_Tp, _Nm>::value_type& std::array<_Tp, _Nm>::operator[](size_type) [with _Tp = long int; long unsigned int _Nm = 1]',
-     inlined from 'Eigen::TensorContractionEvaluatorBase<Derived>::TensorContractionEvaluatorBase(const XprType&, const Device&) [with Derived = Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> >, Eigen::DefaultDevice>]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:256:26,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorContractionOp<Dimensions, LhsXprType, RhsXprType>, Device_>::TensorEvaluator(const XprType&, const Device&) [with Indices = const std::array<Eigen::IndexPair<long int>, 1>; LeftArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >; RightArgType = const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer>; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:613:22,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<NewDimensions, XprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with NewDimensions = const Eigen::DSizes<long int, 4>; ArgType = const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:113:9,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorAssignOp<LhsXprType, RhsXprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with LeftArgType = Eigen::Tensor<float, 4, 1>; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:108:7,
-     inlined from 'static void Eigen::internal::TensorExecutor<Expression, Eigen::DefaultDevice, true>::run(const Expression&, const Eigen::DefaultDevice&) [with Expression = const Eigen::TensorAssignOp<Eigen::Tensor<float, 4, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > > >]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h:56:48,
-     inlined from 'Eigen::Tensor<Scalar_, NumIndices_, Options_, IndexType>& Eigen::Tensor<Scalar_, NumIndices_, Options_, IndexType>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > >; Scalar_ = float; int NumIndices_ = 4; int Options_ = 1; IndexType_ = long int]' at lib/unsupported/Eigen/CXX11/src/Tensor/Tensor.h:417:65,
-     inlined from 'void c_eigen_tensor_d_spatial_conv_backward_input(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int)' at lib/eigen_tensor_d.cpp:63:141:
- /usr/include/c++/14/array:209:24: warning: array subscript 4294967295 is above array bounds of 'std::__array_traits<long int, 1>::_Type' {aka 'long int [1]'} [-Warray-bounds=]
-   209 |         return _M_elems[__n];
-       |                ~~~~~~~~^
- /usr/include/c++/14/array: In function 'void c_eigen_tensor_d_spatial_conv_backward_input(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int)':
- /usr/include/c++/14/array:115:55: note: while referencing 'std::array<long int, 1>::_M_elems'
-   115 |       typename __array_traits<_Tp, _Nm>::_Type        _M_elems;
-       |                                                       ^~~~~~~~
- In member function 'std::array<_Tp, _Nm>::value_type& std::array<_Tp, _Nm>::operator[](size_type) [with _Tp = long int; long unsigned int _Nm = 1]',
-     inlined from 'Eigen::TensorContractionEvaluatorBase<Derived>::TensorContractionEvaluatorBase(const XprType&, const Device&) [with Derived = Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> >, Eigen::DefaultDevice>]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:279:26,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorContractionOp<Dimensions, LhsXprType, RhsXprType>, Device_>::TensorEvaluator(const XprType&, const Device&) [with Indices = const std::array<Eigen::IndexPair<long int>, 1>; LeftArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >; RightArgType = const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer>; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:613:22,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<NewDimensions, XprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with NewDimensions = const Eigen::DSizes<long int, 4>; ArgType = const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:113:9,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorAssignOp<LhsXprType, RhsXprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with LeftArgType = Eigen::Tensor<float, 4, 1>; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:108:7,
-     inlined from 'Eigen::Tensor<Scalar_, NumIndices_, Options_, IndexType>& Eigen::Tensor<Scalar_, NumIndices_, Options_, IndexType>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > >; Scalar_ = float; int NumIndices_ = 4; int Options_ = 1; IndexType_ = long int]' at lib/unsupported/Eigen/CXX11/src/Tensor/Tensor.h:416:14,
-     inlined from 'void c_eigen_tensor_d_spatial_conv_backward_input(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int)' at lib/eigen_tensor_d.cpp:63:141:
- /usr/include/c++/14/array:209:24: warning: array subscript 4294967295 is above array bounds of 'std::__array_traits<long int, 1>::_Type' {aka 'long int [1]'} [-Warray-bounds=]
-   209 |         return _M_elems[__n];
-       |                ~~~~~~~~^
- /usr/include/c++/14/array: In function 'void c_eigen_tensor_d_spatial_conv_backward_input(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int)':
- /usr/include/c++/14/array:115:55: note: while referencing 'std::array<long int, 1>::_M_elems'
-   115 |       typename __array_traits<_Tp, _Nm>::_Type        _M_elems;
-       |                                                       ^~~~~~~~
- In member function 'std::array<_Tp, _Nm>::value_type& std::array<_Tp, _Nm>::operator[](size_type) [with _Tp = long int; long unsigned int _Nm = 1]',
-     inlined from 'Eigen::TensorContractionEvaluatorBase<Derived>::TensorContractionEvaluatorBase(const XprType&, const Device&) [with Derived = Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> >, Eigen::DefaultDevice>]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:256:26,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorContractionOp<Dimensions, LhsXprType, RhsXprType>, Device_>::TensorEvaluator(const XprType&, const Device&) [with Indices = const std::array<Eigen::IndexPair<long int>, 1>; LeftArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >; RightArgType = const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer>; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:613:22,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<NewDimensions, XprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with NewDimensions = const Eigen::DSizes<long int, 4>; ArgType = const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:113:9,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorAssignOp<LhsXprType, RhsXprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with LeftArgType = Eigen::Tensor<float, 4, 1>; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:108:7,
-     inlined from 'Eigen::Tensor<Scalar_, NumIndices_, Options_, IndexType>& Eigen::Tensor<Scalar_, NumIndices_, Options_, IndexType>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 4>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorImagePatchOp<-1, -1, const Eigen::Tensor<float, 4, 1> > >, const Eigen::TensorForcedEvalOp<const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorShufflingOp<const std::array<long int, 4>, const Eigen::TensorReverseOp<const Eigen::IndexList<Eigen::type2index<1>, Eigen::type2index<1>, Eigen::type2index<0>, Eigen::type2index<0> >, const Eigen::Tensor<float, 4, 1> > > >, Eigen::MakePointer> > >; Scalar_ = float; int NumIndices_ = 4; int Options_ = 1; IndexType_ = long int]' at lib/unsupported/Eigen/CXX11/src/Tensor/Tensor.h:416:14,
-     inlined from 'void c_eigen_tensor_d_spatial_conv_backward_input(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int)' at lib/eigen_tensor_d.cpp:63:141:
- /usr/include/c++/14/array:209:24: warning: array subscript 4294967295 is above array bounds of 'std::__array_traits<long int, 1>::_Type' {aka 'long int [1]'} [-Warray-bounds=]
-   209 |         return _M_elems[__n];
-       |                ~~~~~~~~^
- /usr/include/c++/14/array: In function 'void c_eigen_tensor_d_spatial_conv_backward_input(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int)':
- /usr/include/c++/14/array:115:55: note: while referencing 'std::array<long int, 1>::_M_elems'
-   115 |       typename __array_traits<_Tp, _Nm>::_Type        _M_elems;
-       |                                                       ^~~~~~~~
- In member function 'std::array<_Tp, _Nm>::value_type& std::array<_Tp, _Nm>::operator[](size_type) [with _Tp = long int; long unsigned int _Nm = 1]',
-     inlined from 'Eigen::TensorContractionEvaluatorBase<Derived>::TensorContractionEvaluatorBase(const XprType&, const Device&) [with Derived = Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >, Eigen::DefaultDevice>]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:279:26,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorContractionOp<Dimensions, LhsXprType, RhsXprType>, Device_>::TensorEvaluator(const XprType&, const Device&) [with Indices = const std::array<Eigen::IndexPair<long int>, 1>; LeftArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:613:22,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<NewDimensions, XprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with NewDimensions = const Eigen::DSizes<long int, 5>; ArgType = const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:113:9,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorAssignOp<LhsXprType, RhsXprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with LeftArgType = Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:108:7,
-     inlined from 'static void Eigen::internal::TensorExecutor<Expression, Eigen::DefaultDevice, true>::run(const Expression&, const Eigen::DefaultDevice&) [with Expression = const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > >]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h:56:48,
-     inlined from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >; PlainObjectType = Eigen::Tensor<float, 5, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65,
-     inlined from 'void c_eigen_tensor_s_cuboid_conv(tensor_s_elt*, tensor_s_elt*, tensor_s_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)' at lib/eigen_tensor_s.cpp:85:90:
- /usr/include/c++/14/array:209:24: warning: array subscript 4294967295 is above array bounds of 'std::__array_traits<long int, 1>::_Type' {aka 'long int [1]'} [-Warray-bounds=]
-   209 |         return _M_elems[__n];
-       |                ~~~~~~~~^
- /usr/include/c++/14/array: In function 'void c_eigen_tensor_s_cuboid_conv(tensor_s_elt*, tensor_s_elt*, tensor_s_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)':
- /usr/include/c++/14/array:115:55: note: while referencing 'std::array<long int, 1>::_M_elems'
-   115 |       typename __array_traits<_Tp, _Nm>::_Type        _M_elems;
-       |                                                       ^~~~~~~~
- In member function 'std::array<_Tp, _Nm>::value_type& std::array<_Tp, _Nm>::operator[](size_type) [with _Tp = long int; long unsigned int _Nm = 1]',
-     inlined from 'Eigen::TensorContractionEvaluatorBase<Derived>::TensorContractionEvaluatorBase(const XprType&, const Device&) [with Derived = Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >, Eigen::DefaultDevice>]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:256:26,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorContractionOp<Dimensions, LhsXprType, RhsXprType>, Device_>::TensorEvaluator(const XprType&, const Device&) [with Indices = const std::array<Eigen::IndexPair<long int>, 1>; LeftArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:613:22,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<NewDimensions, XprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with NewDimensions = const Eigen::DSizes<long int, 5>; ArgType = const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:113:9,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorAssignOp<LhsXprType, RhsXprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with LeftArgType = Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:108:7,
-     inlined from 'static void Eigen::internal::TensorExecutor<Expression, Eigen::DefaultDevice, true>::run(const Expression&, const Eigen::DefaultDevice&) [with Expression = const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<float, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > >]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h:56:48,
-     inlined from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<float, 5, 1> > > > >; PlainObjectType = Eigen::Tensor<float, 5, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65,
-     inlined from 'void c_eigen_tensor_s_cuboid_conv(tensor_s_elt*, tensor_s_elt*, tensor_s_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)' at lib/eigen_tensor_s.cpp:85:90:
- /usr/include/c++/14/array:209:24: warning: array subscript 4294967295 is above array bounds of 'std::__array_traits<long int, 1>::_Type' {aka 'long int [1]'} [-Warray-bounds=]
-   209 |         return _M_elems[__n];
-       |                ~~~~~~~~^
- /usr/include/c++/14/array: In function 'void c_eigen_tensor_s_cuboid_conv(tensor_s_elt*, tensor_s_elt*, tensor_s_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)':
- /usr/include/c++/14/array:115:55: note: while referencing 'std::array<long int, 1>::_M_elems'
-   115 |       typename __array_traits<_Tp, _Nm>::_Type        _M_elems;
-       |                                                       ^~~~~~~~
- In member function 'std::array<_Tp, _Nm>::value_type& std::array<_Tp, _Nm>::operator[](size_type) [with _Tp = long int; long unsigned int _Nm = 1]',
-     inlined from 'Eigen::TensorContractionEvaluatorBase<Derived>::TensorContractionEvaluatorBase(const XprType&, const Device&) [with Derived = Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > >, Eigen::DefaultDevice>]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:279:26,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorContractionOp<Dimensions, LhsXprType, RhsXprType>, Device_>::TensorEvaluator(const XprType&, const Device&) [with Indices = const std::array<Eigen::IndexPair<long int>, 1>; LeftArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:613:22,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<NewDimensions, XprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with NewDimensions = const Eigen::DSizes<long int, 5>; ArgType = const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:113:9,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorAssignOp<LhsXprType, RhsXprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with LeftArgType = Eigen::TensorMap<Eigen::Tensor<double, 5, 1> >; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:108:7,
-     inlined from 'static void Eigen::internal::TensorExecutor<Expression, Eigen::DefaultDevice, true>::run(const Expression&, const Eigen::DefaultDevice&) [with Expression = const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<double, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > >]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h:56:48,
-     inlined from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > >; PlainObjectType = Eigen::Tensor<double, 5, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65,
-     inlined from 'void c_eigen_tensor_d_cuboid_conv(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)' at lib/eigen_tensor_d.cpp:98:90:
- /usr/include/c++/14/array:209:24: warning: array subscript 4294967295 is above array bounds of 'std::__array_traits<long int, 1>::_Type' {aka 'long int [1]'} [-Warray-bounds=]
-   209 |         return _M_elems[__n];
-       |                ~~~~~~~~^
- /usr/include/c++/14/array: In function 'void c_eigen_tensor_d_cuboid_conv(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)':
- /usr/include/c++/14/array:115:55: note: while referencing 'std::array<long int, 1>::_M_elems'
-   115 |       typename __array_traits<_Tp, _Nm>::_Type        _M_elems;
-       |                                                       ^~~~~~~~
- In member function 'std::array<_Tp, _Nm>::value_type& std::array<_Tp, _Nm>::operator[](size_type) [with _Tp = long int; long unsigned int _Nm = 1]',
-     inlined from 'Eigen::TensorContractionEvaluatorBase<Derived>::TensorContractionEvaluatorBase(const XprType&, const Device&) [with Derived = Eigen::TensorEvaluator<const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > >, Eigen::DefaultDevice>]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:256:26,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorContractionOp<Dimensions, LhsXprType, RhsXprType>, Device_>::TensorEvaluator(const XprType&, const Device&) [with Indices = const std::array<Eigen::IndexPair<long int>, 1>; LeftArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h:613:22,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorReshapingOp<NewDimensions, XprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with NewDimensions = const Eigen::DSizes<long int, 5>; ArgType = const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h:113:9,
-     inlined from 'Eigen::TensorEvaluator<const Eigen::TensorAssignOp<LhsXprType, RhsXprType>, Device>::TensorEvaluator(const XprType&, const Device&) [with LeftArgType = Eigen::TensorMap<Eigen::Tensor<double, 5, 1> >; RightArgType = const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > >; Device = Eigen::DefaultDevice]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h:108:7,
-     inlined from 'static void Eigen::internal::TensorExecutor<Expression, Eigen::DefaultDevice, true>::run(const Expression&, const Eigen::DefaultDevice&) [with Expression = const Eigen::TensorAssignOp<Eigen::TensorMap<Eigen::Tensor<double, 5, 1> >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > >]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h:56:48,
-     inlined from 'Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::Self& Eigen::TensorMap<PlainObjectType, Options_, MakePointer_>::operator=(const OtherDerived&) [with OtherDerived = Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorContractionOp<const std::array<Eigen::IndexPair<long int>, 1>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorStridingOp<const std::array<long int, 8>, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 8>, const Eigen::TensorPatchOp<const Eigen::DSizes<long int, 5>, const Eigen::TensorPaddingOp<const std::array<Eigen::IndexPair<long int>, 5>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > > > >, const Eigen::TensorReshapingOp<const Eigen::DSizes<long int, 2>, const Eigen::TensorMap<Eigen::Tensor<double, 5, 1> > > > >; PlainObjectType = Eigen::Tensor<double, 5, 1>; int Options_ = 0; MakePointer_ = Eigen::MakePointer]' at lib/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h:310:65,
-     inlined from 'void c_eigen_tensor_d_cuboid_conv(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)' at lib/eigen_tensor_d.cpp:98:90:
- /usr/include/c++/14/array:209:24: warning: array subscript 4294967295 is above array bounds of 'std::__array_traits<long int, 1>::_Type' {aka 'long int [1]'} [-Warray-bounds=]
-   209 |         return _M_elems[__n];
-       |                ~~~~~~~~^
- /usr/include/c++/14/array: In function 'void c_eigen_tensor_d_cuboid_conv(tensor_d_elt*, tensor_d_elt*, tensor_d_elt*, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int)':
- /usr/include/c++/14/array:115:55: note: while referencing 'std::array<long int, 1>::_M_elems'
-   115 |       typename __array_traits<_Tp, _Nm>::_Type        _M_elems;
-       |                                                       ^~~~~~~~
- At global scope:
- cc1plus: note: unrecognized command-line option '-Wno-c++11-long-long' may have been intended to silence earlier diagnostics
- cc1plus: note: unrecognized command-line option '-Wno-extern-c-compat' may have been intended to silence earlier diagnostics
- cc1plus: note: unrecognized command-line option '-Wno-invalid-partial-specialization' may have been intended to silence earlier diagnostics
-> compiled  eigen.0.1.6
-> removed   eigen.0.1.6
-> installed eigen.0.1.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:35.32 ---> saved as "fb742c9da43510d4e461abfea263d0de72371022adae288fd79eff712857b733"
Job succeeded
2026-03-25 19:35.43: Job succeeded