user-pic

David Mertens

Subscribe to feed Recent Actions from David Mertens

  • PetaMem commented on What?! CUDA::Minimal... works?

    And here's this - with Perl 5.22, GCC 5.3.0, CUDA 7.5 anno domini 2016:

    dev@sol.petamem.com:/data/soft/perl-CUDA-Minimal
    # ./Build test
    t/00_load.t ............... ok   
    t/Index-Manipulation.t .... ok   
    t/Memory.t ................ ok   
    t/Transfer.t .............. ok     
    t/z_PDL.t ................. ok     
    t/z_kernel_invocations.t .. ok    
    All tests successful.
    Files=6, Tests=76,  1 wallclock secs ( 0.02 usr  0.01 sys +  0.21 cusr  0.74 csys =  0.98 CPU)
    Result: PASS
    

    You have to do some hacking

    /opt/cuda/host_config.h
    to remain silent about gcc …

  • Yuki Kimoto commented on SPVM is released! Perl maybe become much fast.

    SPVM is not C compiler.

    SPVM is compiler and runtime of SPVM bytecode.

    SPVM don't need any C compiler to run SPVM module.

    SPVM module load is fast and easy.

    If I need more performance, I maybe use libjit to compile bytecodes to machine code.


  • Yuki Kimoto commented on SPVM is released! Perl maybe become much fast.

    > you're making it very easy to call from Perl.

    I'm happy you have found the advantage of bytecode.
    Easy to use is one of the big goals.

    >Have you toyed around with any benchmarks compared with pure Perl? Could I try writing some C::Blocks versions to compare?

    I don't do any benchmark yet because SPVM specification has yet something bugs. I must fix it.

    I'm happy if you do benchmark in current status of SPVM. Maybe array loop is very fast than Perl because
    arrays are present in consecutive memory areas.

  • Konstantin Uvarin commented on Assert::Refute - a unified testing and assertion tool

    I think Keyword::DEVELOPMENT can do the trick.

    Also you could use a compile-time constant:

    use constant { DEBUG => $ENV{DEBUG} };
    
    

    # ... much later
    try_refute {
    # some statements here
    } if DEBUG;

    Perl will optimize the if statement out because it knows DEBUG is a constant.

    (Note that I already renamed refute_these to try_refute. The old name is still there but deprecated.)

  • Konstantin Uvarin commented on Assert::Refute - a unified testing and assertion tool

    Just for information.

    Starting from v.0.13, Assert::Refute honors NDEBUG environment variable. If it is set to true, try_refute{...} blocks are optimized out.

    Thanks for your request.

Subscribe to feed Responses to Comments from David Mertens

About blogs.perl.org

blogs.perl.org is a common blogging platform for the Perl community. Written in Perl with a graphic design donated by Six Apart, Ltd.