fix format

This commit is contained in:
whjthu 2023-04-22 17:00:52 +08:00
parent 664f0dbe02
commit 34ed298725
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
namespace infini {
#define SMALL_ARRAY_SIZE 8
struct SmallArray {
int data[SMALL_ARRAY_SIZE];
};
} // namespace infini
} // namespace infini

View File

@ -34,4 +34,4 @@ void transpose_kernel(float *input, float *output, int nDims, int size,
strides, outputShape);
}
} // namespace infini
} // namespace infini

View File

@ -42,4 +42,4 @@ TEST(cuda_Transpose, run) {
testTranspose<TransposeObj>(IncrementalGenerator(), Shape{1, 2, 3, 4});
}
} // namespace infini
} // namespace infini