aboutsummaryrefslogtreecommitdiffstats
path: root/eval
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge pull request #27655 from ↵Tor Egge2023-07-107-35/+101
|\ | | | | | | | | vespa-engine/arnej/defensive-constant-tensor-loader Arnej/defensive constant tensor loader
| * allow integer labels for literal format, but add strict checking ofArne Juul2023-07-067-35/+101
| | | | | | | | addresses to avoid crashing into asserts in CreateValueFromTensorSpec
* | Revert "Add DenseValuesDecoder constructor (needed by AppleClang)."Tor Egge2023-07-101-5/+0
| |
* | Add DenseValuesDecoder constructor (needed by AppleClang).Tor Egge2023-07-061-0/+5
| |
* | - Pack data closer to let config fit in 2 cache lines instead of 4.Henning Baldersheim2023-07-061-10/+10
|/ | | | - Avoid plt indirection and allow more inlining of frequently called code.
* handle even more JSON formats for tensorsArne Juul2023-07-036-22/+145
|
* style fixesArne Juul2023-06-291-12/+12
|
* add MixedL2Distance optimizerArne Juul2023-06-287-1/+245
|
* Eliminate inline warning in dense multi matmul function unit test.Tor Egge2023-06-062-2/+4
|
* allow array of numbers at top level; unit test short-short formsArne Juul2023-05-196-14/+18
|
* allow short-form JSON for 1-d constantsArne Juul2023-05-164-12/+101
|
* Move FastValueView to separate files.Tor Egge2023-02-232-11/+25
|
* Add noexcept and some constexprHenning Baldersheim2023-02-111-23/+23
|
* Deinline the double nested core loopHenning Baldersheim2023-02-111-3/+6
|
* Add noexcept to move constructors and deinline destructor.Henning Baldersheim2023-02-014-25/+45
|
* remove some whitespace at end of linesArne Juul2023-01-228-12/+12
|
* Add noexcept to copy/assign, and reorder for better alignment for size.Henning Baldersheim2023-01-211-11/+11
|
* Change from typedef to using in misc C++ code.Geir Storli2022-12-214-5/+5
|
* Remove stacksize from the thread pools and thread executors.Henning Baldersheim2022-12-201-3/+3
|
* session.GetOutputName is deprecatedArne Juul2022-12-021-21/+8
|
* Support mixed tensor attribute with 2 dimensions when creating distance ↵Geir Storli2022-11-253-0/+24
| | | | calculator.
* Just use get_const_double_value to generate keyHenning Baldersheim2022-11-2113-63/+41
|
* Separate where you nede an actual hash, and where you want the string hashed ↵Henning Baldersheim2022-11-206-16/+14
| | | | to a double.
* Inlined namespace must be reopened as inlined.Tor Egge2022-10-201-1/+1
|
* Deinline LhsRhs destructor.Tor Egge2022-10-171-0/+3
|
* Avoid multiple definitions of struct Node in same namespaceTor Egge2022-10-171-1/+5
|
* mapped lookupHåvard Pettersen2022-10-1115-51/+435
| | | | | | | | - change how stride works with gen specs to allow better control over how mapped tensors overlap (avoid always overlapping via label "0") - extend eval fixture verify functionality by adding a function that takes param specs directly to verify a single specific case.
* Adjust SimpleJoinCount constructor argument type.Tor Egge2022-10-051-1/+1
|
* simple join count optimizationHåvard Pettersen2022-09-297-0/+202
|
* Remove unused variables.Tor Egge2022-09-231-14/+0
|
* use more conceptsHåvard Pettersen2022-09-211-1/+1
|
* Merge pull request #24102 from ↵Henning Baldersheim2022-09-1910-12/+19
|\ | | | | | | | | vespa-engine/balder/avoid-pulling-in-small-vector-everywhere Avoid including smallvector in arrayref, then it is included 'everywh…
| * Avoid including smallvector in arrayref, then it is included 'everywhere'.Henning Baldersheim2022-09-1610-12/+19
| |
* | Drop support for llvm versions < 11.Tor Egge2022-09-181-14/+0
| |
* | Fedora 37 has llvm 15.Tor Egge2022-09-181-24/+23
|/
* experiment with simple instruction-level profilingHåvard Pettersen2022-09-013-13/+62
|
* Fix forward declaration of ValueBuilderFactory.Tor Egge2022-07-053-3/+3
|
* optimize singledim sparse lookupHåvard Pettersen2022-06-179-7/+188
|
* enable making string handles directly from numbersHåvard Pettersen2022-06-161-3/+1
| | | | | used in peek/slice to avoid having to convert small numbers to strings before resolving the enum values.
* Merge pull request #22945 from ↵Henning Baldersheim2022-06-092-2/+12
|\ | | | | | | | | vespa-engine/havardpe/full-reduce-count-is-cellcount full reduce with COUNT aggregator is cell count
| * full reduce with COUNT aggregator is cell countHåvard Pettersen2022-06-072-2/+12
| |
* | 112 mixed dot product optimizationHåvard Pettersen2022-06-079-4/+399
|/
* Let ImportedAttributesRepo return a reference to a shared_ptr instead of a ↵Henning Baldersheim2022-06-031-1/+1
| | | | shared_ptr since that is all you need.
* Move the ValueBuilder stuff from value.h to value_builder_factory.h as that ↵Henning Baldersheim2022-06-0221-149/+171
| | | | is required in far fewer places than value.h.
* Merge pull request #22869 from vespa-engine/balder/dynamic_cast-2-static_castHenning Baldersheim2022-06-022-7/+1
|\ | | | | Use static_cast instead of dynamic_cast
| * Use static_cast instead of dynamic_castHenning Baldersheim2022-06-022-7/+1
| |
* | - Move code from .hpp to .cpp file as it is only used in one place.Henning Baldersheim2022-06-022-123/+119
|/ | | | | - Deinline FastFilterView to make FastValueIndex::create_view generated code smaller and faster. Less jumps and fewer registers to push and pop.
* Avoid pulling in stringfmt.h in by moving code to .cpp file.Henning Baldersheim2022-05-3115-61/+46
|
* Use std::to_chars to make a string out of a 64 bit number.Henning Baldersheim2022-05-311-2/+3
|
* avoid inlining of costly constructorHenning Baldersheim2022-05-262-3/+5
|