@@ -80,15 +80,6 @@ pub const ALIGNMENT: usize = 1 << 5;
80
80
#[ cfg( target_arch = "sparc64" ) ]
81
81
pub const ALIGNMENT : usize = 1 << 6 ;
82
82
83
- // On ARM cache line sizes are fixed. both v6 and v7.
84
- // Need to add board specific or platform specific things later.
85
- /// Cache and allocation multiple alignment size
86
- #[ cfg( target_arch = "thumbv6" ) ]
87
- pub const ALIGNMENT : usize = 1 << 5 ;
88
- /// Cache and allocation multiple alignment size
89
- #[ cfg( target_arch = "thumbv7" ) ]
90
- pub const ALIGNMENT : usize = 1 << 5 ;
91
-
92
83
// Operating Systems cache size determines this.
93
84
// Currently no way to determine this without runtime inference.
94
85
/// Cache and allocation multiple alignment size
@@ -107,9 +98,6 @@ pub const ALIGNMENT: usize = 1 << 5;
107
98
// If you have smaller data with less padded functionality then use 32 with force option.
108
99
// - https://devtalk.nvidia.com/default/topic/803600/variable-cache-line-width-/
109
100
/// Cache and allocation multiple alignment size
110
- #[ cfg( target_arch = "nvptx" ) ]
111
- pub const ALIGNMENT : usize = 1 << 7 ;
112
- /// Cache and allocation multiple alignment size
113
101
#[ cfg( target_arch = "nvptx64" ) ]
114
102
pub const ALIGNMENT : usize = 1 << 7 ;
115
103
0 commit comments