-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Expand file tree
/
Copy pathmodule-info.java
More file actions
25 lines (23 loc) · 1.15 KB
/
module-info.java
File metadata and controls
25 lines (23 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the "Elastic License
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
* Public License v 1"; you may not use this file except in compliance with, at
* your election, the "Elastic License 2.0", the "GNU Affero General Public
* License v3.0 only", or the "Server Side Public License, v 1".
*/
/**
* Contains Panama and native SIMD implementations of various vector operations.
* <p>
* The native code is contained in C++ files, with implementations for ARM and two generations of x86,
* using significant amounts of CPU intrinsics to utilise specific SIMD operations.
* The method handles are loaded using FFI, and made available through a series
* of wrapper classes to be called from Elasticsearch-defined vector formats.
*/
module org.elasticsearch.simdvec {
requires org.elasticsearch.base;
requires org.elasticsearch.logging;
requires org.elasticsearch.nativeaccess;
requires org.apache.lucene.core;
exports org.elasticsearch.simdvec to org.elasticsearch.server;
}