Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable Fortran interface for 32-bit sunindextype #447
Enable Fortran interface for 32-bit sunindextype #447
Changes from 79 commits
57688aa
4489fc2
4bef213
37875a7
b6c67fb
ead7727
63b11da
469071e
489210c
41cd23e
ab73c56
878933f
febfd6c
32e80b7
0db5a5a
68fad59
ed97953
6f55e27
4d518cb
70fdadf
3ab78ff
0e315f2
7db6c2c
4ca1877
8c93b9d
a07187a
63ad76a
004d33c
7edab46
bda9016
da44cea
29caae4
226dd22
f418e5a
41dd601
7f3187b
d0b3497
79c7f1c
5343266
540f7eb
60697cf
179e512
35dc697
18a0351
1416670
db69de0
678cbdd
c21eb5a
a5a6423
045ac4d
1d7a808
1e404f4
5560026
7a0241c
5fa2eb1
febac51
bc8207d
a1d2e5c
6aa852f
02128f8
6ab3a0d
5f500ad
467b08c
11f8ab3
e03d8d3
106cfe7
5f2fbf5
2e82769
5873dd7
36e9514
d6af78b
5054639
5b35907
f454537
fb4f259
46ebae5
9978f60
158a5ba
fe2e1bf
ebf3ff5
240a563
88bfe93
eeb5e0f
2566b4d
6368aa8
d6fa0de
ddf5e2a
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While I tried using a newer KLU these other dependencies got picked up by the KLU target, did you have issues with it not finding them? I think I did have to up date the
CMAKE_MODULE_PATH
though rather than just settingKLU_ROOT
orKLU_DIR
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, if you set
CMAKE_MODULE_PATH
it will find them, but if you don't you need these other lines.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please show in which case you need to add these lines? It definitely wasn't intended that downstream projects would need to manually include dependencies of a SuiteSparse library.
Is this an issue with the CMake Config files installed by SuiteSparse?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mmuetzel The issue seems to be with using
-DKLU_DIR=<suite_sparse_install_path>/lib64/cmake/KLU
alone to provide the config file location. Using either-DKLU_ROOT=<suite_sparse_install_path>
or-DCMAKE_PREFIX_PATH=<suite_sparse_install_path>
works without the above additions.@balos1 are you also setting
-D<dependency>_DIR
variables for the other packages? Using-DKLU_DIR
alone didn't work for me with the above additions. I had add-D<dependency>_DIR
variables for each dependency which also makes the config work without the above additions.This issue is tangential to the topic of this PR so I suggest these changes get broken out into a separate PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like the changes in this file made it into the final version that was merged.
Should the changes to this file be reverted?
(Iiuc, it is unclear which issue they are addressing.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@balos1 in my testing it seemed like these updates were not needed could you check if setting
-D<dependency>_DIR
without these changes is sufficient?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I cant replicate what I had seen before, so I think we can roll this back in a separate PR.