[Bf-blender-cvs] [25c83c217b1] blender-v3.0-release: Cleanup: Clang-format of the HIP device implementation

Sergey Sharybin noreply at git.blender.org
Mon Nov 22 17:32:12 CET 2021


Commit: 25c83c217b1fbf19d67363aa7d5bdeda46b0b6d9
Author: Sergey Sharybin
Date:   Mon Nov 22 14:18:22 2021 +0100
Branches: blender-v3.0-release
https://developer.blender.org/rB25c83c217b1fbf19d67363aa7d5bdeda46b0b6d9

Cleanup: Clang-format of the HIP device implementation

===================================================================

M	intern/cycles/device/hip/device_impl.cpp

===================================================================

diff --git a/intern/cycles/device/hip/device_impl.cpp b/intern/cycles/device/hip/device_impl.cpp
index 78ccf318cf8..76e300eb132 100644
--- a/intern/cycles/device/hip/device_impl.cpp
+++ b/intern/cycles/device/hip/device_impl.cpp
@@ -233,9 +233,7 @@ string HIPDevice::compile_kernel_get_common_cflags(const uint kernel_features)
   return cflags;
 }
 
-string HIPDevice::compile_kernel(const uint kernel_features,
-                                 const char *name,
-                                 const char *base)
+string HIPDevice::compile_kernel(const uint kernel_features, const char *name, const char *base)
 {
   /* Compute kernel name. */
   int major, minor;
@@ -990,7 +988,7 @@ void HIPDevice::tex_alloc(device_texture &mem)
             << string_human_readable_number(mem.memory_size()) << " bytes. ("
             << string_human_readable_size(mem.memory_size()) << ")";
 
-    hip_assert(hipArray3DCreate((hArray*)&array_3d, &desc));
+    hip_assert(hipArray3DCreate((hArray *)&array_3d, &desc));
 
     if (!array_3d) {
       return;



More information about the Bf-blender-cvs mailing list