From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andrea Corallo Newsgroups: gmane.emacs.devel Subject: Re: Type declarations in Elisp Date: Fri, 25 Aug 2023 05:29:26 -0400 Message-ID: References: <87il984vxv.fsf@localhost> <03fc79f4-a532-71b1-0de9-8e52bdf3f138@gmail.com> <87msykfwym.fsf@localhost> <83lee3tjla.fsf@gnu.org> <87wmxm7iu2.fsf@dataswamp.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21505"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Aug 25 11:30:22 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qZT93-0005L8-Oy for ged-emacs-devel@m.gmane-mx.org; Fri, 25 Aug 2023 11:30:21 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qZT8L-000416-9f; Fri, 25 Aug 2023 05:29:37 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qZT8F-00040n-UV for emacs-devel@gnu.org; Fri, 25 Aug 2023 05:29:33 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qZT8F-0002d4-Mi for emacs-devel@gnu.org; Fri, 25 Aug 2023 05:29:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=Cr64mV9D0nxC8rnWgSwIxmLxg+LDJwqwN2059bmD468=; b=Fk0T/7R8xOcGZOZHYEDW +s6Leu/pPgKWFf/Kr7reX6NkS6x6DD3NkU/uyn1cpNT72EZ1Uf8dbGT9XVD2s1DbLyV5mrqEI2Sfd IhVo4mt9wQDAtBwk9pl6lhShHHwq2mt5w31mNo5R8bWv8xrksLrsyjj57jXGzyKDD/KxmiWYmMaiN HJrNw7O2MfGc0j1EYaKK4whfqYhabwkgzi98NRPUtNKzgDwg76ULOa+lcFl4j5mFqEZkNcOJVW3FC SE7H2q0lb9W+mvfiAPUAHasxG84vRHQRSbnU29RQunq8LZSKfxba9/y8GckUB5amLCpq3WRq+yJxD 0rslAGse6m33UQ==; Original-Received: from acorallo by fencepost.gnu.org with local (Exim 4.90_1) (envelope-from ) id 1qZT8B-0005RQ-0j for emacs-devel@gnu.org; Fri, 25 Aug 2023 05:29:31 -0400 In-Reply-To: <87wmxm7iu2.fsf@dataswamp.org> (Emanuel Berg's message of "Wed, 23 Aug 2023 01:33:57 +0200") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:309208 Archived-At: Emanuel Berg writes: > FWIW here are the results before I lost interest in the idea, > for now at least. > > I was unable to get `elisp-benchmarks-run' to just run > specific benchmarks, but reading the docstring it claims that > it is possible, so maybe the error was on me. Hi! >From the docstring of `elisp-benchmarks-run'. If non nil SELECTOR is a regexp to match the benchmark names to be executed. The test is repeated RUNS number of times. emacs -batch -l ./elisp-benchmarks.el -eval '(elisp-benchmarks-run "bubble")' This for instance on my system runs only bubble and bubble-no-cons. > Also it would be beneficial if it could just be told to just > return the values, now it can only make a table out if it - > granted, it is neat and all. The values in which format? PS the table should be org parsable. Bests Andrea