Skip to content
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v5.0.0'
rev: 'v6.0.0'
hooks:
- id: end-of-file-fixer
exclude_types: [svg]
Expand Down Expand Up @@ -45,12 +45,12 @@ repos:
- --keep-after=.. automodule
- --comment-prefix=..
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v20.1.7
rev: v21.1.2
hooks:
- id: clang-format
types_or: [c, c++, cuda, inc]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.2
rev: v0.13.3
hooks:
- id: ruff-format
types_or: [python]
Expand Down
8 changes: 4 additions & 4 deletions src/ImagePotentialBondGPU.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,10 @@ compute_bond_forces(const bond_args_t<group_size>& bond_args,
}
#else
template<class evaluator, int group_size>
__attribute__((visibility("default"))) hipError_t
compute_bond_forces(const bond_args_t<group_size>& bond_args,
const typename evaluator::param_type* d_params,
unsigned int* d_flags);
__attribute__((visibility("default")))
hipError_t compute_bond_forces(const bond_args_t<group_size>& bond_args,
const typename evaluator::param_type* d_params,
unsigned int* d_flags);
#endif

} // end namespace gpu
Expand Down