1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00
This commit is contained in:
DN6
2025-12-11 11:04:47 +05:30
parent 0f1a4e0c14
commit fe451c367b
16 changed files with 679 additions and 706 deletions

View File

@@ -98,9 +98,9 @@ class GGUFCudaKernelsTests(unittest.TestCase):
output_native = linear.forward_native(x)
output_cuda = linear.forward_cuda(x)
assert torch.allclose(
output_native, output_cuda, 1e-2
), f"GGUF CUDA Kernel Output is different from Native Output for {quant_type}"
assert torch.allclose(output_native, output_cuda, 1e-2), (
f"GGUF CUDA Kernel Output is different from Native Output for {quant_type}"
)
@nightly