aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/cuda.py
AgeCommit message (Collapse)AuthorFilesLines
2021-10-10Fix typos discovered by codespellChristian Clauss1-1/+1
2021-10-04work around flake8 F811 for T.overload redefined functionsEli Schwartz1-2/+2
Since typing != T as far as flake8 is aware, give the linter an extra hint.
2021-07-05more f-strings too complex to be caught by pyupgradeEli Schwartz1-2/+2
2021-06-29fix: Always explicitly set encoding for text files (fixes #8263)Daniel Mensinger1-2/+2
2021-06-17move base class for system dependencies into base.pyEli Schwartz1-2/+1
In accordance with review comments; it's small enough this seems fitting.
2021-06-14dependencies: Use the SystemDependencyDylan Baker1-3/+4
This fixes these dependencies, which currently return the name of the dependency as the type. Fixes #8877
2021-06-09compilers: Fix missing functions in Compiler base classDaniel Mensinger1-2/+0
2021-06-05typing: Fully annotate dependencies.cudaDaniel Mensinger1-22/+36
2021-03-04mass rewrite of string formatting to use f-strings everywhereEli Schwartz1-12/+12
performed by running "pyupgrade --py36-plus" and committing the results
2021-03-04various python neatness cleanupsEli Schwartz1-1/+1
All changes were created by running "pyupgrade --py3-only --keep-percent-format" and committing the results. I have not touched string formatting for now. - use set literals - simplify .format() parameter naming - remove __future__ - remove default "r" mode for open() - use OSError rather than compatibility aliases - remove stray parentheses in function(generator) scopes
2021-02-06add loongarch supportXiaotian Wu1-1/+1
2020-11-20use real pathlib moduleDylan Baker1-1/+1
We added the _pathlib module to work around defeciencies in python 3.5's implementation, since we now rely on 3.6 lets drop this
2020-10-13cuda: Also read CUDART_VERSION from cuda_runtime_api.hDaniel Mensinger1-2/+25
2020-06-02dependencies/cuda: Add support for ARM linuxjonathanmist1-6/+10
2020-01-29dependencies: Make Dependency initializer signatures matchDylan Baker1-1/+1
Currently PkgConfig takes language as a keyword parameter in position 3, while the others take it as positional in position 2. Because most dependencies don't actually set a language (they use C style linking), using a positional argument makes more sense. ExtraFrameworkDependencies is even more different, and duplicates some arguments from the base ExternalDependency class. For later changes I'm planning to make having all of the dependencies use the same signature is really, really helpful.
2019-12-05lgtm: fix Multiple calls to __init__Daniel Mensinger1-3/+2
Some slight refactoring for the dependency classes and I switched the elbrus compiler to the GnuLikeCompiler. This is also the correct use according to the documentation of GnuLikeCompiler.
2019-12-05lgtm: fix `Mismatch in multiple assignment` errorDaniel Mensinger1-1/+1
The old version is technically also correct, but this commit makes the intent more explicit (and schould make LGTM happy).
2019-11-05dependency('cuda')Aleksey Gurtovoy1-0/+253