This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 47f288c166 Initial loongarch port (#4538)
47f288c166 is described below

commit 47f288c166458f42d9f488bd48b91e077bc6459f
Author: Leslie Zhai <[email protected]>
AuthorDate: Wed Jul 19 04:50:23 2023 +0800

    Initial loongarch port (#4538)
---
 arrow-buffer/src/alloc/alignment.rs | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arrow-buffer/src/alloc/alignment.rs 
b/arrow-buffer/src/alloc/alignment.rs
index 7978baa2bb..b3979e1d6a 100644
--- a/arrow-buffer/src/alloc/alignment.rs
+++ b/arrow-buffer/src/alloc/alignment.rs
@@ -117,3 +117,7 @@ pub const ALIGNMENT: usize = 1 << 7;
 /// Cache and allocation multiple alignment size
 #[cfg(target_arch = "aarch64")]
 pub const ALIGNMENT: usize = 1 << 6;
+
+/// Cache and allocation multiple alignment size
+#[cfg(target_arch = "loongarch64")]
+pub const ALIGNMENT: usize = 1 << 6;

Reply via email to