summaryrefslogtreecommitdiffstats
path: root/vespajlib/abi-spec.json
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2020-11-02 11:20:14 +0100
committerJon Bratseth <bratseth@gmail.com>2020-11-02 11:20:14 +0100
commit432d35c0d4cc761c6739e63de5dbb6197a369a3d (patch)
treec2a2b49354bebcf1499b6d08161b1c026c73deee /vespajlib/abi-spec.json
parentac8b4ebae4796b275ff71cc15eb259a22797a913 (diff)
Add median aggregator
Diffstat (limited to 'vespajlib/abi-spec.json')
-rw-r--r--vespajlib/abi-spec.json11
1 files changed, 8 insertions, 3 deletions
diff --git a/vespajlib/abi-spec.json b/vespajlib/abi-spec.json
index 7e7e376a8df..c6727aa372e 100644
--- a/vespajlib/abi-spec.json
+++ b/vespajlib/abi-spec.json
@@ -1097,6 +1097,7 @@
"abstract"
],
"methods": [
+ "public static com.yahoo.tensor.Tensor$Builder of(java.lang.String)",
"public static com.yahoo.tensor.Tensor$Builder of(com.yahoo.tensor.TensorType)",
"public static com.yahoo.tensor.Tensor$Builder of(com.yahoo.tensor.TensorType, com.yahoo.tensor.DimensionSizes)",
"public abstract com.yahoo.tensor.TensorType type()",
@@ -1202,6 +1203,9 @@
"public com.yahoo.tensor.Tensor max()",
"public com.yahoo.tensor.Tensor max(java.lang.String)",
"public com.yahoo.tensor.Tensor max(java.util.List)",
+ "public com.yahoo.tensor.Tensor median()",
+ "public com.yahoo.tensor.Tensor median(java.lang.String)",
+ "public com.yahoo.tensor.Tensor median(java.util.List)",
"public com.yahoo.tensor.Tensor min()",
"public com.yahoo.tensor.Tensor min(java.lang.String)",
"public com.yahoo.tensor.Tensor min(java.util.List)",
@@ -1827,10 +1831,11 @@
"fields": [
"public static final enum com.yahoo.tensor.functions.Reduce$Aggregator avg",
"public static final enum com.yahoo.tensor.functions.Reduce$Aggregator count",
- "public static final enum com.yahoo.tensor.functions.Reduce$Aggregator prod",
- "public static final enum com.yahoo.tensor.functions.Reduce$Aggregator sum",
"public static final enum com.yahoo.tensor.functions.Reduce$Aggregator max",
- "public static final enum com.yahoo.tensor.functions.Reduce$Aggregator min"
+ "public static final enum com.yahoo.tensor.functions.Reduce$Aggregator median",
+ "public static final enum com.yahoo.tensor.functions.Reduce$Aggregator min",
+ "public static final enum com.yahoo.tensor.functions.Reduce$Aggregator prod",
+ "public static final enum com.yahoo.tensor.functions.Reduce$Aggregator sum"
]
},
"com.yahoo.tensor.functions.Reduce": {