Skip to content

Commit

Permalink
Preliminary support for ARM
Browse files Browse the repository at this point in the history
This commit adds preliminary support for 64-bit ARM architectures.

Relates #25318
  • Loading branch information
drewr authored and jasontedor committed Jun 30, 2017
1 parent 1b60247 commit 6deb18c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildSrc/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ snakeyaml = 1.15
# When updating log4j, please update also docs/java-api/index.asciidoc
log4j = 2.8.2
slf4j = 1.6.2
jna = 4.4.0
jna = 4.4.0-1

# test dependencies
randomizedrunner = 2.5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public void testSearchWithMatrixStats() throws IOException {
assertEquals(5, matrixStats.getFieldCount("num2"));
assertEquals(29d, matrixStats.getMean("num2"), 0d);
assertEquals(330d, matrixStats.getVariance("num2"), 0d);
assertEquals(-0.13568039346585542, matrixStats.getSkewness("num2"), 0d);
assertEquals(-0.13568039346585542, matrixStats.getSkewness("num2"), 1.0e-16);
assertEquals(1.3517561983471074, matrixStats.getKurtosis("num2"), 0d);
assertEquals(-767.5, matrixStats.getCovariance("num", "num2"), 0d);
assertEquals(-0.9876336291667923, matrixStats.getCorrelation("num", "num2"), 0d);
Expand Down
1 change: 1 addition & 0 deletions core/licenses/jna-4.4.0-1.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
c9dfcec6f07ee4b1d7a6c09a7eaa9dd4fb6d2c79
1 change: 0 additions & 1 deletion core/licenses/jna-4.4.0.jar.sha1

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ static class Arch {
static {
Map<String,Arch> m = new HashMap<>();
m.put("amd64", new Arch(0xC000003E, 0x3FFFFFFF, 57, 58, 59, 322, 317));
m.put("aarch64", new Arch(0xC00000B7, 0xFFFFFFFF, 1079, 1071, 221, 281, 277));
ARCHITECTURES = Collections.unmodifiableMap(m);
}

Expand Down

0 comments on commit 6deb18c

Please sign in to comment.