Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhan committed Jan 4, 2024
1 parent c3fc554 commit 29aa9aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cuda/private/macros/cuda_binary.bzl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("//cuda/private:rules/cuda_library.bzl", _cuda_library = "cuda_library")

def cuda_binary(name, alwayslink=True, **attrs):
def cuda_binary(name, alwayslink = True, **attrs):
"""A macro wraps cuda_library and cc_binary to ensure the binary is compiled with the CUDA compiler.
Args:
Expand Down
2 changes: 1 addition & 1 deletion cuda/private/macros/cuda_test.bzl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("//cuda/private:rules/cuda_library.bzl", _cuda_library = "cuda_library")

def cuda_test(name, alwayslink=True, **attrs):
def cuda_test(name, alwayslink = True, **attrs):
"""A macro wraps cuda_library and cc_test to ensure the test is compiled with the CUDA compiler.
Args:
Expand Down

0 comments on commit 29aa9aa

Please sign in to comment.