From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 9A2774C295 for ; Tue, 23 Jul 2024 21:01:43 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 9E68168D5F7; Wed, 24 Jul 2024 00:01:40 +0300 (EEST) Received: from mail-lf1-f54.google.com (mail-lf1-f54.google.com [209.85.167.54]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 58BB168D428 for ; Wed, 24 Jul 2024 00:01:34 +0300 (EEST) Received: by mail-lf1-f54.google.com with SMTP id 2adb3069b0e04-52f01993090so3927932e87.2 for ; Tue, 23 Jul 2024 14:01:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1721768493; x=1722373293; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=VBP7yer9JD51poKDfRiBi3bdIV+9UVYGo6Zlxn2p3X8=; b=wLOzcWqo9XX85NqI9sFseuW2ZFQ6cKIWS69vYJxynoRnj64sRTaMuk2mXtejCr3WQC kTDRNRndFP8czcTVcFO7yGHrUW+sNBjtXFISZHnx5k3UvKbrWHvC5XDzt5pLGoU08RcG /iAooHbfyIQxDR034GqQ8kkwoUXAIyFXGNySbP+s+6No68hif0khaRDaC4qggVlW1I+V GcyUAMKatmkvYD3RtORW9wcsVGFdctJU/jGBs29+2V/EeWIgXw+BymJbSq8nWg0KYoB7 r9do9qb05ondbiy/942AKcL4S/JVF1Csn9Ms99XtLkGX+xwq9zDMMdYfZq+s92RzhiOC yiqw== X-Gm-Message-State: AOJu0YxVp6xgDUyFVsvVwO/i0290tVRmQdLzA6D28E7AyVxrM+RjPdqi D4r8wRsK3dE4f3BtyQ1Kjq4sqmH9SKh7N9mGSjmWt8eIAouBIrabxnMSh4nEbZIaTAAgRVwjLde qkw== X-Google-Smtp-Source: AGHT+IE+SSiUKcqpA3T9x/beDknZJSt2skSvMB8vddRolusNgX4qAL1EbkgdXqiUg4FbUv60Y79wcg== X-Received: by 2002:a05:6512:1091:b0:52d:8f80:6444 with SMTP id 2adb3069b0e04-52fcda327e7mr577510e87.32.1721768493083; Tue, 23 Jul 2024 14:01:33 -0700 (PDT) Received: from localhost (host-114-191.parnet.fi. [77.234.114.191]) by smtp.gmail.com with ESMTPSA id 2adb3069b0e04-52ef9ee09c5sm1432037e87.220.2024.07.23.14.01.32 for (version=TLS1 cipher=AES128-SHA bits=128/128); Tue, 23 Jul 2024 14:01:32 -0700 (PDT) To: ffmpeg-devel@ffmpeg.org Date: Wed, 24 Jul 2024 00:01:32 +0300 Message-Id: <20240723210132.95804-1-martin@martin.st> X-Mailer: git-send-email 2.39.3 (Apple Git-146) MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] checkasm: Increase the tolerance for ac3_sum_square_butterfly_float X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: =?utf-8?q?Martin_Storsj=C3=B6_via_ffmpeg-devel?= Reply-To: FFmpeg development discussions and patches Cc: =?UTF-8?q?Martin=20Storsj=C3=B6?= Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Increase the tolerance from 10 ulp to 11 ulp. This fixes occasional errors for some inputs; the errors could be reproduced on aarch64/neon builds, with "checkasm --test=ac3dsp 3446175925". --- tests/checkasm/ac3dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checkasm/ac3dsp.c b/tests/checkasm/ac3dsp.c index 442e965f3b..8c682d03cd 100644 --- a/tests/checkasm/ac3dsp.c +++ b/tests/checkasm/ac3dsp.c @@ -181,7 +181,7 @@ static void check_ac3_sum_square_butterfly_float(AC3DSPContext *c) { call_ref(v1, lt, rt, ELEMS); call_new(v2, lt, rt, ELEMS); - if (!float_near_ulp_array(v1, v2, 10, 4)) + if (!float_near_ulp_array(v1, v2, 11, 4)) fail(); bench_new(v2, lt, rt, ELEMS); -- 2.39.3 (Apple Git-146) _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".