Skip to content

Commit

Permalink
Fix compatibility with the recent QUDA commits.
Browse files Browse the repository at this point in the history
  • Loading branch information
SaltyChiang committed Nov 29, 2024
1 parent 0625a72 commit 8afc0a1
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 332 deletions.
2 changes: 1 addition & 1 deletion pyquda_core/pyquda/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.7"
__version__ = "0.9.8"
35 changes: 1 addition & 34 deletions pyquda_core/pyquda/dirac/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,21 @@
LatticeFermion,
LatticeStaggeredFermion,
)
from ..enum_quda import ( # noqa: F401
from ..enum_quda import (
QUDA_MAX_DIM,
QUDA_MAX_MULTI_SHIFT,
QUDA_MAX_MG_LEVEL,
QudaMemoryType,
QudaLinkType,
QudaGaugeFieldOrder,
QudaTboundary,
QudaPrecision,
QudaReconstructType,
QudaGaugeFixed,
QudaDslashType,
QudaInverterType,
QudaEigType,
QudaEigSpectrumType,
QudaSolutionType,
QudaSolveType,
QudaMultigridCycleType,
QudaSchwarzType,
QudaResidualType,
QudaCABasis,
QudaMatPCType,
QudaDagType,
QudaMassNormalization,
Expand All @@ -54,41 +48,15 @@
QudaDiracFieldOrder,
QudaCloverFieldOrder,
QudaVerbosity,
QudaTune,
QudaPreserveDirac,
QudaParity,
QudaDiracType,
QudaFieldLocation,
QudaSiteSubset,
QudaSiteOrder,
QudaFieldOrder,
QudaFieldCreate,
QudaGammaBasis,
QudaSourceType,
QudaNoiseType,
QudaProjectionType,
QudaPCType,
QudaTwistFlavorType,
QudaTwistDslashType,
QudaTwistCloverDslashType,
QudaTwistGamma5Type,
QudaUseInitGuess,
QudaDeflatedGuess,
QudaComputeNullVector,
QudaSetupType,
QudaTransferType,
QudaBoolean,
QudaBLASOperation,
QudaBLASDataType,
QudaBLASDataOrder,
QudaDirection,
QudaLinkDirection,
QudaFieldGeometry,
QudaGhostExchange,
QudaStaggeredPhase,
QudaContractType,
QudaContractGamma,
QudaExtLibType,
)

nullptr = Pointer("void")
Expand Down Expand Up @@ -448,7 +416,6 @@ def newQudaInvertParam(
invert_param.precondition_cycle = 1
invert_param.omega = 1.0

invert_param.tune = QudaTune.QUDA_TUNE_YES
invert_param.verbosity = QudaVerbosity.QUDA_SUMMARIZE

return invert_param
Expand Down
Loading

0 comments on commit 8afc0a1

Please sign in to comment.