Home
last modified time | relevance | path

Searched refs:TaoSoftThreshold (Results 1 – 5 of 5) sorted by relevance

/petsc/src/tao/tutorials/
H A Dex4.c515 PetscCall(TaoSoftThreshold(temp, -ctx->alpha / mu, ctx->alpha / mu, z)); in TaoSolveADMM()
632 if (ctx->soft) PetscCall(TaoSoftThreshold(x, 0., 0., x)); in main()
/petsc/src/tao/constrained/tutorials/
H A DtomographyADMM.c60 PetscCall(TaoSoftThreshold(work, -lambda / mu, lambda / mu, out)); in TaoShellSolve_SoftThreshold()
/petsc/src/tao/util/
H A Dtao_util.c513 PetscErrorCode TaoSoftThreshold(Vec in, PetscReal lb, PetscReal ub, Vec out) in TaoSoftThreshold() function
/petsc/include/
H A Dpetsctao.h8 PETSC_EXTERN PetscErrorCode TaoSoftThreshold(Vec, PetscReal, PetscReal, Vec);
/petsc/src/tao/constrained/impls/admm/
H A Dadmm.c426 …PetscCall(TaoSoftThreshold(am->workJacobianRight, -am->lambda / am->mu, am->lambda / am->mu, am->s… in TaoSolve_ADMM()