-
This is more of a question than a bug report:
I have a somewhat different use case than is covered in the documentation of how to use this library. In my case, I am wanting to search for similar-so…
-
https://godbolt.org/z/TaxEM3rxP
```c
u8 log10_u16(u16 x) {
u8 n = 0;
n += (x >= 10);
n += (x >= 100);
n += (x >= 1000);
n += (x >= 10000);
return n;
}
```
produc…
-
## Overview
Implement job queue system to handle asynchronous processing of uploaded files (vectorization, embedding generation)
When files are uploaded by the user we can't vectorize and generate…
-
The code can use full vectorization with `numpy` to achieve better efficiencies
-
The reason is that there is a problem with the batching logic in the TokenCountBatchingStrategy, which exists in version 1.0.0-M2:
public List batch(List documents) {
List batches = new ArrayList…
-
I'm running the partial assembled code on a platform with `avx512` architecture. However the speed is same as on my vmware.
I did following things:
1. build mfem with `cmake -DCMAKE_C_FLAGS="-march=…
-
**REPRODUCER**
```mlir
func.func @vectorization_test(%extracted_slice : tensor, %arg0: index, %arg2: index, %3: tensor, %4: tensor) -> tensor{
%c0 = arith.constant 0 :index
%8 = linalg.generic {…
-
## Description
Configuration URL values given cause issues if trailing forward slashes are present.
[See forum discussion](https://forum.weaviate.io/t/vectorization-failed-404-http-host-docker-int…
-
@gbaraldi requested a writeup of the design I had for vectorized primitives.
I have no particular plans to implement this myself anytime soon, so this is
up for grabs.
# Background
A longstanding (…
-
We're seeing performance regression on vectorized matmul, likely caused by the following PR: https://github.com/nod-ai/iree-amd-aie/pull/856, see table below:
Matmul problem size: 512x512x4096 (MxK…