Skip to content
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

Added doxygen comments for all functions in the milc interface. #263

Merged
merged 1 commit into from
May 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion include/quda.h
Original file line number Diff line number Diff line change
Expand Up @@ -726,12 +726,20 @@ extern "C" {
*
* @param oprod The outer product to be computed.
* @param quark The input fermion field.
* @param displacement The fermion-field displacement in the outer product.
* @param num The number of quark fields
* @param coeff The coefficient multiplying the fermion fields in the outer product
* @param param The parameters of the outer-product field.
*/
void computeStaggeredOprodQuda(void** oprod, void** quark, int num, double** coeff, QudaGaugeParam* param);

/**
* Compute the naive staggered force (experimental). All fields are
* QUDA device fields and must be in the same precision.
*
* mom Momentum field (QUDA device field)
* quark Quark field solution vectors
* coeff Step-size coefficient
*/
void computeStaggeredForceQuda(void* mom, void* quark, double* coeff);

/**
Expand Down
Loading