Re: Guile's time execution issues

2020-05-08 Thread Linus Björnstam
Another option would be to just overload equal? in match.scm to transform into 
eqv? when there are char literals or numbers, eq? on symbols, booleans,  the 
empty list and keywords and (@@ (guile) equal?) for everything else.

Considering that it in this case contributed a 25% overhead to code that was 
performance critical I think it would be a pretty valid thing to do. If you, 
ludo, an Andy thinks that would be a good idea I can make such a patch for 
match.scm. That would have the benefit of not changing the upstream code (which 
is (include ...)d in match.scm), nor fiddling around with guile optimisations.

-- 
  Linus Björnstam

On Mon, 4 May 2020, at 22:50, Linus Björnstam wrote:
> You didn't see my other reply. The matching code isn't suboptimal. The 
> equality predicate is  The problem is that match compares using equal? 
> even for literal chars (where eqv? is a lot faster). It would be a 
> rather trivial optimization to do, either to match.scm (meaning: 
> breaking with upstream and use syntax-case) or to the guile compiler in 
> general (changing equal? to eqv, when there are character literals), 
> which seems ok-ish for this use-case but at very little benefit in 
> general.
> 
> A long-term goal of mine is to write a pattern matcher with the 
> optimisations that the racket matcher does (among other things: some 
> serious list matching reordering!). That is a daunting task though.
> 
> -- 
>   Linus Björnstam
> 
> On Mon, 4 May 2020, at 22:09, Ludovic Courtès wrote:
> > Hi,
> > 
> > Linus Björnstam  skribis:
> > 
> > > On Mon, 4 May 2020, at 11:36, Ludovic Courtès wrote:
> > >  
> > >> > One thing I found is that `match` is slow. The code looked nicer but 
> > >> > had to change it back to lets and conds as the performance
> > >> > increase was ~2 seconds.
> > >> 
> > >> Oh, in which case exactly?  And are you sure your hand-written code is
> > >> equivalent to the ‘match’ code (it’s common for hand-written code to be
> > >> more lax than ‘match’)?
> > >> 
> > >> One thing to pay attention to is the use of ‘list?’, which is O(N), and
> > >> is implied by ellipses in ‘match’.  If you want to use ‘match’ in a way
> > >> that avoids ‘list?’, write patterns such as (a . b) instead of (a b ...).
> > >> It doesn’t have the same meaning, but often the end result is the same,
> > >> for instance because you’ll later match on ‘b’ anyway.
> > >> 
> > >> (I wish we can one day have a proper list type disjoint from pairs…)
> > >
> > > The change is here: he is only matching against chars and predicates: 
> > > https://github.com/aconchillo/guile-json/commit/ad4b06d86e4822466983d00f55474c8f664b538d
> > 
> > It would be nice if you could pinpoint which one of these changes causes
> > a difference, because:
> > 
> > --8<---cut here---start->8---
> > scheme@(guile-user)> ,optimize (match (peek-char port) ((? eof-object?) 
> > x) ((? whitespace?) w) (_ e))
> > $84 = (let ((v (peek-char port)))
> >   (cond ((eof-object? v) x)
> > ((whitespace? v) w)
> > (else e)))
> > --8<---cut here---end--->8---
> > 
> > What might make a difference is the code bloat when using ‘or’:
> > 
> > --8<---cut here---start->8---
> > scheme@(guile-user)> ,optimize (match (peek-char port) ((or #\a #\b #\c 
> > #\d) x))
> > $86 = (let ((v (peek-char port)))
> >   (cond ((equal? v #\a) x)
> > ((equal? v #\b) x)
> > ((equal? v #\c) x)
> > ((equal? v #\d) x)
> > (else
> >  ((@@ (ice-9 match) error)
> >   'match
> >   "no matching pattern"
> >   v)
> >  #f)))
> > --8<---cut here---end--->8---
> > 
> > but even that sounds unlikely.
> > 
> > You’re compiling with -O2, right?
> > 
> > Thanks,
> > Ludo’.
> >
> 
>



Error on returning a pair

2020-05-08 Thread reetindersidhu
Hi

Getting a guile error for

  (lambda (x) (x . x))

but not for

  (lambda (x) (x x))

This may be a dumb question, but why is this?

Same behavior in versions 2.2.6 and 3.0.2.

Regards
Reetinder Sidhu



Re: Error on returning a pair

2020-05-08 Thread Stefan Israelsson Tampe
(x . x) is not creating a pair, use (cons x x) or `(,x . ,x)

On Fri, May 8, 2020 at 4:16 PM reetindersidhu 
wrote:

> Hi
>
> Getting a guile error for
>
>   (lambda (x) (x . x))
>
> but not for
>
>   (lambda (x) (x x))
>
> This may be a dumb question, but why is this?
>
> Same behavior in versions 2.2.6 and 3.0.2.
>
> Regards
> Reetinder Sidhu
>
>


Re: Functional hashtables

2020-05-08 Thread Christopher Lemmer Webber
ArneBab writes:

> Christopher Lemmer Webber  writes:
>
>> Linus Björnstam writes:
>>
>>> I made a module out of Andy's dash (and added some comfort functions
>>> over fash-fold):
>>> https://hg.sr.ht/~bjoli/guile-fash/browse/fash.scm?rev=default
>>
>> BTW, I am getting:
>>
>> cwebber@twig:~/devel$ git clone https://hg.sr.ht/~bjoli/guile-fash
>> Cloning into 'guile-fash'...
>> fatal: repository 'https://hg.sr.ht/~bjoli/guile-fash/' not found
>
> You need
>
> hg clone https://hg.sr.ht/~bjoli/guile-fash
>
> (which I like — I don’t intend to move my hobby stuff to git; even after
> 2 years of using it professionally, git is still painful to use)
>
> Best wishes,
> Arne

Linus Björnstam writes:

> My code is still using mercurial. I will migrate it to git when I have
> the time.

Hey... sorry I just didn't realize.  Cloned, thank you! :)



Writing a generic function for records?

2020-05-08 Thread Stephen Paul Weber
Is it possible (Guile 3.0) to write a generic function / method for record 
values?


I see that a record has a GOOPS class <>, and that a record-type has the 
GOOPS class , but it seems that <> is not a subclass of 
?


I am playing with the ECMAscript implementation and would like to:

(define-method (pget (rec ) (fld ))
((record-accessor (record-type-descriptor rec) fld) rec)
)

Which I can write for any given record type, but should be possible to write for
all of them, maybe?


signature.asc
Description: PGP signature