suggestion

#16
by Dumbledore2 - opened

mb its possible to make new compress / quantization that will decrease the noise gate impact while compression also ?

mb its possible to make new compress / quantization that will decrease the noise gate impact while compression also ?

It's interesting idea and it can significantly improve the quality of model quantization. But there is a problem. llama-quantize tool works on the CPU, but SVD for noise supression for tensors should be done on GPU, otherwise it would take forever to compress, because SVD on CPU is too slow. I don't think that anyone will rewrite the llama-quantize tool to CUDA or Vulkan, because it's huge amount of work and this will significantly complicate the code and its development in the future.

Maybe there are simple patterns that CUDA or Vulkan could calculate quickly to give us a boost?

Maybe there are simple patterns that CUDA or Vulkan could calculate quickly to give us a boost?

I don't know. Try to explore this thing by yourself. May be AI can help do develop sampler for llama-cpp with noise supression 😃

LuffyTheFox changed discussion status to closed

Sign up or log in to comment