From 29aa9aad0b2881a9b3a5b0980a3660fbb80204be Mon Sep 17 00:00:00 2001 From: Cloud Han Date: Thu, 4 Jan 2024 10:00:43 +0800 Subject: [PATCH] Format --- cuda/private/macros/cuda_binary.bzl | 2 +- cuda/private/macros/cuda_test.bzl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cuda/private/macros/cuda_binary.bzl b/cuda/private/macros/cuda_binary.bzl index 96f6c380..2fb1c024 100644 --- a/cuda/private/macros/cuda_binary.bzl +++ b/cuda/private/macros/cuda_binary.bzl @@ -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: diff --git a/cuda/private/macros/cuda_test.bzl b/cuda/private/macros/cuda_test.bzl index 4e6691fc..caa8e3f6 100644 --- a/cuda/private/macros/cuda_test.bzl +++ b/cuda/private/macros/cuda_test.bzl @@ -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: