]> git.djapps.eu Git - pkg/ggml/sources/ggml/commitdiff
tests : fix whitespace (llama/0)
authorGeorgi Gerganov <redacted>
Mon, 8 Jul 2024 07:39:36 +0000 (10:39 +0300)
committerGeorgi Gerganov <redacted>
Mon, 8 Jul 2024 10:03:28 +0000 (13:03 +0300)
tests/test-backend-ops.cpp

index 83d4a0eb153cf4c34860e8c10b2d7e6f946a7366..a1bfc8fddd418cc8cbc8e180ceacdd4fa9948552 100644 (file)
@@ -1268,16 +1268,12 @@ struct test_pool2d : public test_case {
 
 // GGML_OP_CONV_TRANSPOSE_1D
 struct test_conv_transpose_1d : public test_case {
-    
     const std::array<int64_t, 4> ne_input;
     const std::array<int64_t, 4> ne_kernel;
 
-    // stride
-    const int s0;
-    // padding
-    const int p0;
-    // dilation
-    const int d0;
+    const int s0; // stride
+    const int p0; // padding
+    const int d0; // dilation
 
     std::string vars() override {
         return VARS_TO_STR5(ne_input, ne_kernel, s0, p0, d0);