aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/tensor/TensorOperations.java
blob: aca306b914c56107ff91c8e5e9a58169c092604d (plain) (blame)
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
26
27
28
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.tensor;

import com.google.common.collect.ImmutableSet;

import java.util.Set;

/**
 * Functions on tensors
 *
 * @author bratseth
 */
class TensorOperations {

    /**
     * A utility method which returns an ummutable set of the union of the dimensions
     * of the two argument tensors.
     *
     * @return the combined dimensions as an unmodifiable set
     */
    static Set<String> combineDimensions(Tensor a, Tensor b) {
        ImmutableSet.Builder<String> setBuilder = new ImmutableSet.Builder<>();
        setBuilder.addAll(a.dimensions());
        setBuilder.addAll(b.dimensions());
        return setBuilder.build();
    }

}