Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 30, 2024
1 parent 99480e8 commit 328681b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyg_lib/csrc/ops/cuda/sampled_kernel.cu
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace ops {
namespace {

#define THREADS 1024
#define CDIV(N, M) ((N) + (M)-1) / (M)
#define CDIV(N, M) ((N) + (M) - 1) / (M)

enum FnType { ADD, SUB, MUL, DIV };
const std::map<std::string, FnType> to_fn_type = {
Expand Down

0 comments on commit 328681b

Please sign in to comment.