aboutsummaryrefslogtreecommitdiffstats
path: root/eval
Commit message (Collapse)AuthorAgeFilesLines
* use common code for left and right step/resetArne Juul2019-06-252-78/+56
|
* GC unused debug methodArne Juul2019-06-252-23/+0
|
* use common SideDim struct for both left and right dimensionsArne Juul2019-06-252-28/+22
|
* add bracesArne Juul2019-06-251-3/+9
|
* GC unused classArne Juul2019-06-246-230/+2
|
* use DenseDimensionCombiner class insteadArne Juul2019-06-243-56/+24
|
* add unit testArne Juul2019-06-245-0/+199
|
* add DenseDimensionCombiner classArne Juul2019-06-243-0/+246
|
* readjust to a world without ErrorValueHåvard Pettersen2019-06-193-6/+22
|
* remove ErrorValue from eval libraryHåvard Pettersen2019-06-1810-79/+35
|
* add float cases to encode/decode conformance testHåvard Pettersen2019-06-122-175/+234
|
* enable float result type for prod tensor operationsHåvard Pettersen2019-06-124-41/+5
|
* Merge pull request #9729 from vespa-engine/havardpe/float-cell-serializationArne H Juul2019-06-129-181/+208
|\ | | | | serialize float cells
| * serialize float cellsHåvard Pettersen2019-06-079-181/+208
| | | | | | | | preserve tensor type across encode/decode
* | Add missing includes.Tor Egge2019-06-111-0/+1
|/
* remove sparse tensor builderHåvard Pettersen2019-06-0610-401/+0
| | | | also remove sparse tensor unsorted address builder
* use direct sparse tensor builderHåvard Pettersen2019-06-0615-59/+186
|
* remove dense tensor builderHåvard Pettersen2019-06-069-481/+0
|
* use direct dense tensor builderHåvard Pettersen2019-06-067-393/+203
| | | | also remove tensor micro-benchmark
* Throw instead of silent abort.Henning Baldersheim2019-06-041-1/+1
|
* remove DefaultTensor type wrapperHåvard Pettersen2019-06-0311-94/+49
| | | | | also remove TensorBuilder interface and use SparseTensorBuilder directly
* remove tensor factoryHåvard Pettersen2019-05-3112-660/+170
|
* preserve cell type during encode decodeHåvard Pettersen2019-05-062-93/+113
|
* disable concat optimization for non-double cellsHåvard Pettersen2019-05-031-1/+2
|
* make sure tensor spec has appropriate typeHåvard Pettersen2019-05-032-0/+2
| | | | | adds runtime support for input tensors with float cells in eval fixture used for testing.
* disable optimizations for tensors with non-double cellsHåvard Pettersen2019-05-0316-32/+78
| | | | | | use reference implementation for tensors claiming to have non-double cells to be able to preserve cell type for tensors created from a TensorSpec (specifically lambda tensors with float cells).
* add float cases to node type testHåvard Pettersen2019-05-032-4/+21
| | | | also update tensor lambda parsing to support cell type
* add concept of float cells in value typeHåvard Pettersen2019-05-036-231/+305
| | | | | | | | scalar values are always double preserve cell type when combining tensor with scalar result(float cells, double cells) -> double cells require '()' in tensor type spec clean up and update value type test
* avoid abstract value typesHåvard Pettersen2019-04-2528-756/+247
| | | | | | | | | | | | remove basic value type ANY remove concept of tensors with unknown dimensions disallow value types with unbound indexed dimensions remove predicates talking about abstract types type of unknown values are now ERROR (was ANY) require that overlapping indexed dimensions are of equal size type unification now requires types to be equal ('if' expressions) creating a tensor type without dimensions now gives a double type make rank feature setup fail on invalid types (query/attribute)
* support binary formats with cell type in reference implementationHåvard Pettersen2019-04-093-7/+248
|
* Merge pull request #9029 from ↵Henning Baldersheim2019-04-082-2/+42
|\ | | | | | | | | vespa-engine/havardpe/parse-and-ignore-tensor-cell-type parse (and ignore for now) tensor cell type in tensor type spec
| * Improve handling of malformed cell type specifiersHåvard Pettersen2019-04-081-6/+24
| | | | | | | | | | | | | | | | | | Do not consume any input when encountering a malformed cell type specifier. This avoids parse conflicts between 'less' operators and tensor cell type specifiers in type expressions in the type resolution test which parses partial input into value types. example expression: 'tensor < double'
| * parse (and ignore for now) tensor cell type in tensor type specHåvard Pettersen2019-04-052-2/+24
| | | | | | | | example: tensor<float>(x[10])
* | Use bit number 3 mean 'with cell type' to carry forward the current schema ↵Henning Baldersheim2019-04-052-5/+7
|/ | | | | | where the bits hav meaning. Update expected result.
* Add a method that will extract cells only to a favoured cell type. This is ↵Henning Baldersheim2019-04-036-11/+72
| | | | temporary until full typed tensor support is in place.
* Keep the serialzation of the cells with the serialization for now.Henning Baldersheim2019-04-037-82/+79
| | | | Clean up code for better understanding and reuse.
* Instead of specifying type of tensor, specify serialization.Henning Baldersheim2019-04-0313-86/+74
|
* Remove wrappers not neeed.Henning Baldersheim2019-04-023-12/+1
|
* Remove duplicate typedefs.Henning Baldersheim2019-04-022-12/+8
|
* Handle dense tensors encoded as floatHenning Baldersheim2019-04-0211-137/+251
|
* Add cell_typeHenning Baldersheim2019-04-024-19/+18
|
* Only include what you need.Henning Baldersheim2019-04-024-11/+4
|
* Unify on nested namespaces.Henning Baldersheim2019-04-0221-107/+54
|
* Adjust build setup for Darwin.Tor Egge2019-03-141-1/+1
|
* Check for assignable tensor type when setting tensor in TensorFieldValue.Tor Egge2019-03-071-3/+3
|
* Add '()' to macro definition.Geir Storli2019-03-013-3/+3
|
* Merge pull request #8604 from ↵Tor Egge2019-02-255-22/+156
|\ | | | | | | | | vespa-engine/geirst/remove-and-modify-for-mixed-tensors Geirst/remove and modify for mixed tensors
| * Verify that previous value is used by testing with an operation that ↵Geir Storli2019-02-251-17/+8
| | | | | | | | combines old and new.
| * Support modify operation on mixed tensors.Geir Storli2019-02-252-2/+64
| |
| * Support remove operation on mixed tensors.Geir Storli2019-02-254-5/+86
| |