From patchwork Thu Nov 16 22:52:32 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Rodriguez Bahena, Victor" X-Patchwork-Id: 838810 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-87211-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="Ghj7W2tZ"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3ydGm44QRbz9s5L for ; Fri, 17 Nov 2017 09:55:00 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references; q=dns; s=default; b=SAiY+FC1FioWH5P2Z68uqcttl66vFSr 8LMB08zSZEOKPPTaRjmk7CF8WBRD+2DRkv/YvsIlpmwmq82RatcxCPGG0sdLA2hl OUMNOHVH2O3c48hgd4T2VAUBrO4POmWTFjNgDBwLnBNX7fab302q78Befj8be0Bg cveCXSiePbY0= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references; s=default; bh=fx8+XSdymMVypg7HeGPgslpbn5A=; b=Ghj7W 2tZxiKOMVd4wQuxbI063846PZxlFxpH6Preehsl43LmDDeTRN5SL2yeWOqxCAe3l 0X9DZARzJb1b04AwrVmdFibr2qXRqdPZYmbal/C0ic23+kLQ6nQ4NSZJ1UY4Bca4 S6o14Pc4YGKaDAlPq9e/aTALG6v+w96b5+8tUY= Received: (qmail 33812 invoked by alias); 16 Nov 2017 22:54:44 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 33717 invoked by uid 89); 16 Nov 2017 22:54:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.7 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KB_WAM_FROM_NAME_SINGLEWORD, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1915 X-HELO: mga09.intel.com X-ExtLoop1: 1 From: Victor Rodriguez To: libc-alpha@sourceware.org Cc: Victor Rodriguez Subject: [PATCH 2/3] benchtests: Adjust valid and accepted properties Date: Thu, 16 Nov 2017 22:52:32 +0000 Message-Id: <20171116225233.2697-2-victor.rodriguez.bahena@intel.com> In-Reply-To: <20171116225233.2697-1-victor.rodriguez.bahena@intel.com> References: <20171116225233.2697-1-victor.rodriguez.bahena@intel.com> Benchmark workload-spec2006.wrf does not produce max, min or mean results but instead produce throughput. This is represented in benchtests/bench-skeleton.c. This patch adjust benchout.schema.json to consider bench.out from bench-math benchmarks as valid 2017-11-15 Victor Rodriguez (VERSION): Set to 2.27 * benchtests/scripts/benchout.schema.json: Add throughput as accepted result from property and remove "max", min" and "mean" from required properties based on benchtests/bench-skeleton.c. Signed-off-by: Victor Rodriguez --- ChangeLog | 7 +++++++ benchtests/scripts/benchout.schema.json | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7d0fd63..6a6bb62 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2017-11-15 Victor Rodriguez + + (VERSION): Set to 2.27 + * benchtests/scripts/benchout.schema.json: Add throughput as accepted + result from property and remove "max", min" and "mean" from required + properties based on benchtests/bench-skeleton.c. + 2017-11-15 Victor Rodriguez (VERSION): Set to 2.27 diff --git a/benchtests/scripts/benchout.schema.json b/benchtests/scripts/benchout.schema.json index 814c633..7edd2a7 100644 --- a/benchtests/scripts/benchout.schema.json +++ b/benchtests/scripts/benchout.schema.json @@ -19,6 +19,7 @@ "properties": { "duration": {"type": "number"}, "iterations": {"type": "number"}, + "throughput": {"type": "number"}, "max": {"type": "number"}, "min": {"type": "number"}, "mean": {"type": "number"}, @@ -27,7 +28,7 @@ "items": {"type": "number"} } }, - "required": ["duration", "iterations", "max", "min", "mean"], + "required": ["duration", "iterations"], "additionalProperties": false } },