際際滷

際際滷Share a Scribd company logo
Scrapping Your Inef鍖cient Engine
Using Partial Evaluation to Improve
    Domain Speci鍖c Language
         Implementation
       Edwin Brady and Kevin Hammond
              eb@cs.st-andrews.ac.uk


           University of St Andrews
        ICFP 2010, September 29th 2010


                                         ICFP 2010, September 29th 2010  p.1/20
Introduction

We will describe an approach to Embedded Domain
Speci鍖c Language (EDSL) development, combining two
technologies:

    Dependent Types  for precise language
    implementation
    Partial Evaluation  for ef鍖cient language
    implementation

We will use I DRIS, an experimental language with full
dependent types.
(http://www.idris-lang.org/; cabal install idris)

                                           ICFP 2010, September 29th 2010  p.2/20
Some Idris Features

I DRIS has several features to help support EDSL
implementation. . .

     Full-Spectrum Dependent Types
     Compile-time evaluation
     Ef鍖cient executable code, via C
     Uni鍖cation (type/argument inference)
     Plugin decision procedures
     Overloadable do-notation, idiom brackets
     Simple foreign function interface

. . . and I try to be responsive to feature requests!
                                              ICFP 2010, September 29th 2010  p.3/20
A Recipe for EDSLs

Our motivation is a desire to reason about
extra-functional properties of resource-aware programs.
The recipe is:

 1. Design an EDSL which guarantees the resource
    constraints, represented as a dependent type
 2. Implement the interpreter for that EDSL
 3. Specialise the interpreter for concrete EDSL
    programs, using a partial evaluator

To illustrate this, we present a simple implementation of a
reliable (ARQ) network transport protocol.

                                            ICFP 2010, September 29th 2010  p.4/20
Session State




                ICFP 2010, September 29th 2010  p.5/20
Transmission State




                     ICFP 2010, September 29th 2010  p.6/20
Network Protocol EDSL

data ARQ : State -> State -> Set -> Set where
   START : ARQ CLOSED OPENING ()
 | START_RECV_ACK
    : (if_ok       : ARQ (OPEN (Ready First)) st t) -
       (on_timeout : ARQ OPENING st t) ->
             ARQ OPENING st t
 | END    : ARQ (OPEN (Ready n)) CLOSING ()
 | END_RETRY
          : ARQ CLOSING CLOSING ()
 | END_RECV_ACK
    : (if_ok:       ARQ CLOSED st t) ->
       (on_timeout: ARQ CLOSING st t) ->
             ARQ CLOSING st t
   ...
                                      ICFP 2010, September 29th 2010  p.7/20
Network Protocol EDSL

data ARQ : State -> State -> Set -> Set where
   ...
 | WITHIN : Time -> (action      : ARQ st st t) ->
                     (on_timeout : ARQ st st t) ->
                      ARQ st st t
 | IF     : Bool -> (if_true : ARQ st st t) ->
                     (if_false : ARQ st st t) ->
                      ARQ st st t
 | RETURN : t -> ARQ st st t
 | BIND   : ARQ st st t ->
            (k : t -> ARQ st st t) ->
             ARQ st st t;


                                     ICFP 2010, September 29th 2010  p.8/20
Network Protocol EDSL Interpreter

The interpreter for ARQ is parameterised over the actual
network data, and keeps track of time to check for
timeouts.
params (s:Socket, host:String, port:Int) {
   interpBy : Time -> (prog:ARQ st st t) [static] ->
              IO (Maybe t);
   ...
   interpBy t END
         = checkTime t (sendPacket s host port (CTL S_BYE));
   ...
}

checkTime : Time -> (IO t) -> IO (Maybe t);
                                              ICFP 2010, September 29th 2010  p.9/20
Sending Packets

An example program, which opens a connection, sends
a batch of packets, then closes it, within i microseconds:
sendNumber : Time -> Nat -> ARQ CLOSED CLOSED ();
sendNumber i tot
    = WITHIN i
         (do { open_connection 500000;
               session 500000 O tot First;
               close_connection 500000;
         (TRACE "Timed out");

The types ensure that the protocol is followed; any
protocol violation is a type error.


                                           ICFP 2010, September 29th 2010  p.10/20
Sending Packets

The following function sends tot packets, with no
payload, with timeout i per packet.
session : Time -> Nat -> Nat -> (sq:Seq) ->
           ARQ (OPEN (Ready sq)) CLOSING ();
session i n tot sq =
       IF (n == tot)
           END
          (do { TRACE ("Sending " ++ showNat n);
                 send sq i;
                 session i (S n) tot (Next sq); });

This program is recursive and not obviously terminating.


                                          ICFP 2010, September 29th 2010  p.11/20
Sending Packets (Specialised)

Partial evaluation of the ARQ interpreter with this program
yields:
sessionS : Socket -> String -> Int -> Time ->
           Time -> Nat -> Nat -> Seq -> IO (Maybe ());
sessionS s h p t i n tot sq = do {
  checkTime t (if (n == tot)
     then checkTime t (sendPacket s h p (CTL S_BYE))
     else do { putStr ("Sending " ++ showNat n);
               checkTime t (sendS s h p t sq i);
               checkTime t
                  (sessionS s h p t (S n) i tot (Next sq))); }



                                            ICFP 2010, September 29th 2010  p.12/20
Partial Evaluation

In order to achieve this result, we:

     Changed the evaluator to allow caching of
     intermediate results
         Cache intermediate results for functions with
         declared static arguments
         This speci鍖cally prevents in鍖nite unfolding of
         recursive calls
         Host languages job  details in the paper
     Followed some clearly de鍖ned guidelines when
     implementing the interpreter
         EDSL developers job  details in the paper

                                           ICFP 2010, September 29th 2010  p.13/20
Results

Run time, in seconds of user time, for a variety of DSL
programs:
    Program      Spec   Gen       Java      C
     fact1       0.017 8.598      0.081   0.007
     fact2       1.650 877.2      1.937   0.653
    sumlist      3.181 1148.0     4.413   0.346
      copy       0.589 1.974      1.770   0.564
 copy_dynamic    0.507 1.763      1.673   0.512
  copy_store     1.705 7.650      3.324   1.159
   sort_file     5.205 7.510      2.610   1.728
       ARQ       0.751 0.990               

                                          ICFP 2010, September 29th 2010  p.14/20
Results

Run time, in seconds of user time, for a variety of DSL
programs:
    Program      Spec   Gen       Java      C
     fact1       0.017 8.598      0.081   0.007
     fact2       1.650 877.2      1.937   0.653
    sumlist      3.181 1148.0     4.413   0.346
      copy       0.589 1.974      1.770   0.564
 copy_dynamic    0.507 1.763      1.673   0.512
  copy_store     1.705 7.650      3.324   1.159
   sort_file     5.205 7.510      2.610   1.728
       ARQ       0.751 0.990               

                                          ICFP 2010, September 29th 2010  p.15/20
Results

Run time, in seconds of user time, for a variety of DSL
programs:
    Program      Spec   Gen       Java      C
     fact1       0.017 8.598      0.081   0.007
     fact2       1.650 877.2      1.937   0.653
    sumlist      3.181 1148.0     4.413   0.346
      copy       0.589 1.974      1.770   0.564
 copy_dynamic    0.507 1.763      1.673   0.512
  copy_store     1.705 7.650      3.324   1.159
   sort_file     5.205 7.510      2.610   1.728
       ARQ       0.751 0.990               

                                          ICFP 2010, September 29th 2010  p.16/20
Conclusions

I DRISs type system occupies a sweet spot where
partial evaluation is particularly effective.

     Tagless interpreters
     Existing evaluator; only minor changes required
     Comparable performance to hand written C/Java . . .
       . . . but veri鍖ed resource usage, via EDSLs

This is not unique to I DRIS!

     Techniques equally applicable to Agda, Coq, Guru,
     Trellys, Haskell (with GADTs). . .

                                          ICFP 2010, September 29th 2010  p.17/20
. . . and 鍖nally

I have been packaging and documenting I DRIS. Please
give it a go!

    cabal install idris
    http://www.idris-lang.org/
    http://www.idris-lang.org/tutorial/

Thank you for your attention.




                                       ICFP 2010, September 29th 2010  p.18/20
Partial Evaluation  Guidelines

An EDSL developer can fully exploit partial evaluation by
following these guidelines:

 1. Index the EDSL representation by its type
 2. The interpreter must only pattern match on the
    EDSL program to be translated
 3. Auxiliary functions which match on dynamic data
    must not be passed EDSL code
 4. Ensure that all of program construction, generation
    and transformation can be evaluated statically
       Note: this rules out higher order functions, for
       the moment!
                                          ICFP 2010, September 29th 2010  p.19/20
Network Protocol EDSL

data ARQ : State -> State -> Set -> Set where
   ...
 | SEND
    : Packet -> ARQ (OPEN (Ready n))
                     (OPEN (Waiting n)) ()
 | RESEND
    : Packet -> ARQ (OPEN (Waiting n))
                     (OPEN (Waiting n)) ()
 | RECV_ACK
    : (if_ok :       ARQ (OPEN (Ready (Next n))) st t
       (on_timeout : ARQ (OPEN (Waiting n)) st t) ->
        ARQ (OPEN (Waiting n)) st t
   ...

                                      ICFP 2010, September 29th 2010  p.20/20

More Related Content

What's hot (10)

Java Performance and Using Java Flight Recorder
Java Performance and Using Java Flight RecorderJava Performance and Using Java Flight Recorder
Java Performance and Using Java Flight Recorder
Isuru Perera
Simulating TUM Drone 2.0 by ROS
Simulating TUM Drone 2.0  by ROSSimulating TUM Drone 2.0  by ROS
Simulating TUM Drone 2.0 by ROS
esraatarekahmedhasansadek
Connect your Android to the real world with Bluetooth Low Energy
Connect your Android to the real world with Bluetooth Low EnergyConnect your Android to the real world with Bluetooth Low Energy
Connect your Android to the real world with Bluetooth Low Energy
Gabor Paller
LLVM Register Allocation
LLVM Register AllocationLLVM Register Allocation
LLVM Register Allocation
Wang Hsiangkai
Jvm Performance Tunning
Jvm Performance TunningJvm Performance Tunning
Jvm Performance Tunning
guest1f2740
Enhancing the region model of RTSJ
Enhancing the region model of RTSJEnhancing the region model of RTSJ
Enhancing the region model of RTSJ
Universidad Carlos III de Madrid
Metrics ekon 14_2_kleiner
Metrics ekon 14_2_kleinerMetrics ekon 14_2_kleiner
Metrics ekon 14_2_kleiner
Max Kleiner
A synchronous scheduling service for distributed real-time Java
A synchronous scheduling service for distributed real-time JavaA synchronous scheduling service for distributed real-time Java
A synchronous scheduling service for distributed real-time Java
Universidad Carlos III de Madrid
Towards an Integration of the Actor Model in an FRP Language for Small-Scale ...
Towards an Integration of the Actor Model in an FRP Language for Small-Scale ...Towards an Integration of the Actor Model in an FRP Language for Small-Scale ...
Towards an Integration of the Actor Model in an FRP Language for Small-Scale ...
Takuo Watanabe
Machine Trace Metrics
Machine Trace MetricsMachine Trace Metrics
Machine Trace Metrics
Wang Hsiangkai
Java Performance and Using Java Flight Recorder
Java Performance and Using Java Flight RecorderJava Performance and Using Java Flight Recorder
Java Performance and Using Java Flight Recorder
Isuru Perera
Connect your Android to the real world with Bluetooth Low Energy
Connect your Android to the real world with Bluetooth Low EnergyConnect your Android to the real world with Bluetooth Low Energy
Connect your Android to the real world with Bluetooth Low Energy
Gabor Paller
LLVM Register Allocation
LLVM Register AllocationLLVM Register Allocation
LLVM Register Allocation
Wang Hsiangkai
Jvm Performance Tunning
Jvm Performance TunningJvm Performance Tunning
Jvm Performance Tunning
guest1f2740
Metrics ekon 14_2_kleiner
Metrics ekon 14_2_kleinerMetrics ekon 14_2_kleiner
Metrics ekon 14_2_kleiner
Max Kleiner
A synchronous scheduling service for distributed real-time Java
A synchronous scheduling service for distributed real-time JavaA synchronous scheduling service for distributed real-time Java
A synchronous scheduling service for distributed real-time Java
Universidad Carlos III de Madrid
Towards an Integration of the Actor Model in an FRP Language for Small-Scale ...
Towards an Integration of the Actor Model in an FRP Language for Small-Scale ...Towards an Integration of the Actor Model in an FRP Language for Small-Scale ...
Towards an Integration of the Actor Model in an FRP Language for Small-Scale ...
Takuo Watanabe
Machine Trace Metrics
Machine Trace MetricsMachine Trace Metrics
Machine Trace Metrics
Wang Hsiangkai

Viewers also liked (13)

Small & Medium Sized Businesses (SMB) : Not To Miss Digital Marketing Stats I...
Small & Medium Sized Businesses (SMB) : Not To Miss Digital Marketing Stats I...Small & Medium Sized Businesses (SMB) : Not To Miss Digital Marketing Stats I...
Small & Medium Sized Businesses (SMB) : Not To Miss Digital Marketing Stats I...
TechShu
40 Must-have Tools for Social Media Managers in 2015
40 Must-have Tools for Social Media Managers in 201540 Must-have Tools for Social Media Managers in 2015
40 Must-have Tools for Social Media Managers in 2015
TechShu
Licencje asia
Licencje asiaLicencje asia
Licencje asia
sbnk07
Mistakes to Avoid in Visual Marketing
Mistakes to Avoid in Visual MarketingMistakes to Avoid in Visual Marketing
Mistakes to Avoid in Visual Marketing
TechShu
Inspiring images
Inspiring imagesInspiring images
Inspiring images
TJ Jones
Phrase quiz
Phrase quizPhrase quiz
Phrase quiz
b2550
NYC Sub
NYC SubNYC Sub
NYC Sub
jamesdavidsaul
Frasco de woolfFrasco de woolf
Frasco de woolf
MadridECC2011
Social Media Marketing at Startup Saturday Kolkata
Social Media Marketing at Startup Saturday KolkataSocial Media Marketing at Startup Saturday Kolkata
Social Media Marketing at Startup Saturday Kolkata
TechShu
ESWC2015 - Tutorial on Publishing and Interlinking Linked Geospatial Data
ESWC2015 - Tutorial on Publishing and Interlinking Linked Geospatial DataESWC2015 - Tutorial on Publishing and Interlinking Linked Geospatial Data
ESWC2015 - Tutorial on Publishing and Interlinking Linked Geospatial Data
Kostis Kyzirakos
Branding Through Social Media
Branding Through Social MediaBranding Through Social Media
Branding Through Social Media
Jennifer Butler
How to Target a Solid Social Media Following
How to Target a Solid Social Media FollowingHow to Target a Solid Social Media Following
How to Target a Solid Social Media Following
Jennifer Butler
Understanding Social Media
Understanding Social MediaUnderstanding Social Media
Understanding Social Media
Jennifer Butler
Small & Medium Sized Businesses (SMB) : Not To Miss Digital Marketing Stats I...
Small & Medium Sized Businesses (SMB) : Not To Miss Digital Marketing Stats I...Small & Medium Sized Businesses (SMB) : Not To Miss Digital Marketing Stats I...
Small & Medium Sized Businesses (SMB) : Not To Miss Digital Marketing Stats I...
TechShu
40 Must-have Tools for Social Media Managers in 2015
40 Must-have Tools for Social Media Managers in 201540 Must-have Tools for Social Media Managers in 2015
40 Must-have Tools for Social Media Managers in 2015
TechShu
Licencje asia
Licencje asiaLicencje asia
Licencje asia
sbnk07
Mistakes to Avoid in Visual Marketing
Mistakes to Avoid in Visual MarketingMistakes to Avoid in Visual Marketing
Mistakes to Avoid in Visual Marketing
TechShu
Inspiring images
Inspiring imagesInspiring images
Inspiring images
TJ Jones
Phrase quiz
Phrase quizPhrase quiz
Phrase quiz
b2550
Frasco de woolfFrasco de woolf
Frasco de woolf
MadridECC2011
Social Media Marketing at Startup Saturday Kolkata
Social Media Marketing at Startup Saturday KolkataSocial Media Marketing at Startup Saturday Kolkata
Social Media Marketing at Startup Saturday Kolkata
TechShu
ESWC2015 - Tutorial on Publishing and Interlinking Linked Geospatial Data
ESWC2015 - Tutorial on Publishing and Interlinking Linked Geospatial DataESWC2015 - Tutorial on Publishing and Interlinking Linked Geospatial Data
ESWC2015 - Tutorial on Publishing and Interlinking Linked Geospatial Data
Kostis Kyzirakos
Branding Through Social Media
Branding Through Social MediaBranding Through Social Media
Branding Through Social Media
Jennifer Butler
How to Target a Solid Social Media Following
How to Target a Solid Social Media FollowingHow to Target a Solid Social Media Following
How to Target a Solid Social Media Following
Jennifer Butler
Understanding Social Media
Understanding Social MediaUnderstanding Social Media
Understanding Social Media
Jennifer Butler

Similar to Scrapping Your Inefficient Engine (20)

20081114 Friday Food iLabt Bart Joris
20081114 Friday Food iLabt Bart Joris20081114 Friday Food iLabt Bart Joris
20081114 Friday Food iLabt Bart Joris
imec.archive
Speeding up Programs with OpenACC in GCC
Speeding up Programs with OpenACC in GCCSpeeding up Programs with OpenACC in GCC
Speeding up Programs with OpenACC in GCC
inside-BigData.com
Krzysztof Mazepa - Netflow/cflow - ulubionym narzdziem operator坦w SP
Krzysztof Mazepa - Netflow/cflow - ulubionym narzdziem operator坦w SPKrzysztof Mazepa - Netflow/cflow - ulubionym narzdziem operator坦w SP
Krzysztof Mazepa - Netflow/cflow - ulubionym narzdziem operator坦w SP
PROIDEA
Web Template Mechanisms in SOC Verification - DVCon.pdf
Web Template Mechanisms in SOC Verification - DVCon.pdfWeb Template Mechanisms in SOC Verification - DVCon.pdf
Web Template Mechanisms in SOC Verification - DVCon.pdf
SamHoney6
Build 2016 - B880 - Top 6 Reasons to Move Your C++ Code to Visual Studio 2015
Build 2016 - B880 - Top 6 Reasons to Move Your C++ Code to Visual Studio 2015Build 2016 - B880 - Top 6 Reasons to Move Your C++ Code to Visual Studio 2015
Build 2016 - B880 - Top 6 Reasons to Move Your C++ Code to Visual Studio 2015
Windows Developer
May2010 hex-core-opt
May2010 hex-core-optMay2010 hex-core-opt
May2010 hex-core-opt
Jeff Larkin
Best Practices in Handling Performance Issues
Best Practices in Handling Performance IssuesBest Practices in Handling Performance Issues
Best Practices in Handling Performance Issues
Odoo
Transfer of ut information from fpga through ethernet interface
Transfer of ut information from fpga through ethernet interfaceTransfer of ut information from fpga through ethernet interface
Transfer of ut information from fpga through ethernet interface
eSAT Publishing House
Cisco connect winnipeg 2018 stealthwatch whiteboard session and cisco secur...
Cisco connect winnipeg 2018   stealthwatch whiteboard session and cisco secur...Cisco connect winnipeg 2018   stealthwatch whiteboard session and cisco secur...
Cisco connect winnipeg 2018 stealthwatch whiteboard session and cisco secur...
Cisco Canada
Advanced iOS Build Mechanics, Sebastien Pouliot
Advanced iOS Build Mechanics, Sebastien PouliotAdvanced iOS Build Mechanics, Sebastien Pouliot
Advanced iOS Build Mechanics, Sebastien Pouliot
Xamarin
Android Boot Time Optimization
Android Boot Time OptimizationAndroid Boot Time Optimization
Android Boot Time Optimization
Kan-Ru Chen
Reproducible Computational Pipelines with Docker and Nextflow
Reproducible Computational Pipelines with Docker and NextflowReproducible Computational Pipelines with Docker and Nextflow
Reproducible Computational Pipelines with Docker and Nextflow
inside-BigData.com
GNAT GPL For Mindstorms
GNAT GPL For MindstormsGNAT GPL For Mindstorms
GNAT GPL For Mindstorms
AdaCore
Structured concurrency with Kotlin Coroutines
Structured concurrency with Kotlin CoroutinesStructured concurrency with Kotlin Coroutines
Structured concurrency with Kotlin Coroutines
Vadims Savjolovs
.NET Fest 2019. 亳从仂仍舒亶 舒仍舒从亳仆. 亳从仂仂仗亳仄亳亰舒亳亳 于 仄亳亠 .NET
.NET Fest 2019. 亳从仂仍舒亶 舒仍舒从亳仆. 亳从仂仂仗亳仄亳亰舒亳亳 于 仄亳亠 .NET.NET Fest 2019. 亳从仂仍舒亶 舒仍舒从亳仆. 亳从仂仂仗亳仄亳亰舒亳亳 于 仄亳亠 .NET
.NET Fest 2019. 亳从仂仍舒亶 舒仍舒从亳仆. 亳从仂仂仗亳仄亳亰舒亳亳 于 仄亳亠 .NET
NETFest
BRKRST-3066 - Troubleshooting Nexus 7000 (2013 Melbourne) - 2 Hours.pdf
BRKRST-3066 - Troubleshooting Nexus 7000 (2013 Melbourne) - 2 Hours.pdfBRKRST-3066 - Troubleshooting Nexus 7000 (2013 Melbourne) - 2 Hours.pdf
BRKRST-3066 - Troubleshooting Nexus 7000 (2013 Melbourne) - 2 Hours.pdf
aaajjj4
Solve the colocation conundrum: Performance and density at scale with Kubernetes
Solve the colocation conundrum: Performance and density at scale with KubernetesSolve the colocation conundrum: Performance and density at scale with Kubernetes
Solve the colocation conundrum: Performance and density at scale with Kubernetes
Niklas Quarfot Nielsen
IWAN Lab Guide
IWAN Lab GuideIWAN Lab Guide
IWAN Lab Guide
jww330015
MCSoC'13 Keynote Talk "Taming Big Data Streams"
MCSoC'13 Keynote Talk "Taming Big Data Streams"MCSoC'13 Keynote Talk "Taming Big Data Streams"
MCSoC'13 Keynote Talk "Taming Big Data Streams"
Hideyuki Kawashima
Security Monitoring with eBPF
Security Monitoring with eBPFSecurity Monitoring with eBPF
Security Monitoring with eBPF
Alex Maestretti
20081114 Friday Food iLabt Bart Joris
20081114 Friday Food iLabt Bart Joris20081114 Friday Food iLabt Bart Joris
20081114 Friday Food iLabt Bart Joris
imec.archive
Speeding up Programs with OpenACC in GCC
Speeding up Programs with OpenACC in GCCSpeeding up Programs with OpenACC in GCC
Speeding up Programs with OpenACC in GCC
inside-BigData.com
Krzysztof Mazepa - Netflow/cflow - ulubionym narzdziem operator坦w SP
Krzysztof Mazepa - Netflow/cflow - ulubionym narzdziem operator坦w SPKrzysztof Mazepa - Netflow/cflow - ulubionym narzdziem operator坦w SP
Krzysztof Mazepa - Netflow/cflow - ulubionym narzdziem operator坦w SP
PROIDEA
Web Template Mechanisms in SOC Verification - DVCon.pdf
Web Template Mechanisms in SOC Verification - DVCon.pdfWeb Template Mechanisms in SOC Verification - DVCon.pdf
Web Template Mechanisms in SOC Verification - DVCon.pdf
SamHoney6
Build 2016 - B880 - Top 6 Reasons to Move Your C++ Code to Visual Studio 2015
Build 2016 - B880 - Top 6 Reasons to Move Your C++ Code to Visual Studio 2015Build 2016 - B880 - Top 6 Reasons to Move Your C++ Code to Visual Studio 2015
Build 2016 - B880 - Top 6 Reasons to Move Your C++ Code to Visual Studio 2015
Windows Developer
May2010 hex-core-opt
May2010 hex-core-optMay2010 hex-core-opt
May2010 hex-core-opt
Jeff Larkin
Best Practices in Handling Performance Issues
Best Practices in Handling Performance IssuesBest Practices in Handling Performance Issues
Best Practices in Handling Performance Issues
Odoo
Transfer of ut information from fpga through ethernet interface
Transfer of ut information from fpga through ethernet interfaceTransfer of ut information from fpga through ethernet interface
Transfer of ut information from fpga through ethernet interface
eSAT Publishing House
Cisco connect winnipeg 2018 stealthwatch whiteboard session and cisco secur...
Cisco connect winnipeg 2018   stealthwatch whiteboard session and cisco secur...Cisco connect winnipeg 2018   stealthwatch whiteboard session and cisco secur...
Cisco connect winnipeg 2018 stealthwatch whiteboard session and cisco secur...
Cisco Canada
Advanced iOS Build Mechanics, Sebastien Pouliot
Advanced iOS Build Mechanics, Sebastien PouliotAdvanced iOS Build Mechanics, Sebastien Pouliot
Advanced iOS Build Mechanics, Sebastien Pouliot
Xamarin
Android Boot Time Optimization
Android Boot Time OptimizationAndroid Boot Time Optimization
Android Boot Time Optimization
Kan-Ru Chen
Reproducible Computational Pipelines with Docker and Nextflow
Reproducible Computational Pipelines with Docker and NextflowReproducible Computational Pipelines with Docker and Nextflow
Reproducible Computational Pipelines with Docker and Nextflow
inside-BigData.com
GNAT GPL For Mindstorms
GNAT GPL For MindstormsGNAT GPL For Mindstorms
GNAT GPL For Mindstorms
AdaCore
Structured concurrency with Kotlin Coroutines
Structured concurrency with Kotlin CoroutinesStructured concurrency with Kotlin Coroutines
Structured concurrency with Kotlin Coroutines
Vadims Savjolovs
.NET Fest 2019. 亳从仂仍舒亶 舒仍舒从亳仆. 亳从仂仂仗亳仄亳亰舒亳亳 于 仄亳亠 .NET
.NET Fest 2019. 亳从仂仍舒亶 舒仍舒从亳仆. 亳从仂仂仗亳仄亳亰舒亳亳 于 仄亳亠 .NET.NET Fest 2019. 亳从仂仍舒亶 舒仍舒从亳仆. 亳从仂仂仗亳仄亳亰舒亳亳 于 仄亳亠 .NET
.NET Fest 2019. 亳从仂仍舒亶 舒仍舒从亳仆. 亳从仂仂仗亳仄亳亰舒亳亳 于 仄亳亠 .NET
NETFest
BRKRST-3066 - Troubleshooting Nexus 7000 (2013 Melbourne) - 2 Hours.pdf
BRKRST-3066 - Troubleshooting Nexus 7000 (2013 Melbourne) - 2 Hours.pdfBRKRST-3066 - Troubleshooting Nexus 7000 (2013 Melbourne) - 2 Hours.pdf
BRKRST-3066 - Troubleshooting Nexus 7000 (2013 Melbourne) - 2 Hours.pdf
aaajjj4
Solve the colocation conundrum: Performance and density at scale with Kubernetes
Solve the colocation conundrum: Performance and density at scale with KubernetesSolve the colocation conundrum: Performance and density at scale with Kubernetes
Solve the colocation conundrum: Performance and density at scale with Kubernetes
Niklas Quarfot Nielsen
IWAN Lab Guide
IWAN Lab GuideIWAN Lab Guide
IWAN Lab Guide
jww330015
MCSoC'13 Keynote Talk "Taming Big Data Streams"
MCSoC'13 Keynote Talk "Taming Big Data Streams"MCSoC'13 Keynote Talk "Taming Big Data Streams"
MCSoC'13 Keynote Talk "Taming Big Data Streams"
Hideyuki Kawashima
Security Monitoring with eBPF
Security Monitoring with eBPFSecurity Monitoring with eBPF
Security Monitoring with eBPF
Alex Maestretti

Scrapping Your Inefficient Engine

  • 1. Scrapping Your Inef鍖cient Engine Using Partial Evaluation to Improve Domain Speci鍖c Language Implementation Edwin Brady and Kevin Hammond eb@cs.st-andrews.ac.uk University of St Andrews ICFP 2010, September 29th 2010 ICFP 2010, September 29th 2010 p.1/20
  • 2. Introduction We will describe an approach to Embedded Domain Speci鍖c Language (EDSL) development, combining two technologies: Dependent Types for precise language implementation Partial Evaluation for ef鍖cient language implementation We will use I DRIS, an experimental language with full dependent types. (http://www.idris-lang.org/; cabal install idris) ICFP 2010, September 29th 2010 p.2/20
  • 3. Some Idris Features I DRIS has several features to help support EDSL implementation. . . Full-Spectrum Dependent Types Compile-time evaluation Ef鍖cient executable code, via C Uni鍖cation (type/argument inference) Plugin decision procedures Overloadable do-notation, idiom brackets Simple foreign function interface . . . and I try to be responsive to feature requests! ICFP 2010, September 29th 2010 p.3/20
  • 4. A Recipe for EDSLs Our motivation is a desire to reason about extra-functional properties of resource-aware programs. The recipe is: 1. Design an EDSL which guarantees the resource constraints, represented as a dependent type 2. Implement the interpreter for that EDSL 3. Specialise the interpreter for concrete EDSL programs, using a partial evaluator To illustrate this, we present a simple implementation of a reliable (ARQ) network transport protocol. ICFP 2010, September 29th 2010 p.4/20
  • 5. Session State ICFP 2010, September 29th 2010 p.5/20
  • 6. Transmission State ICFP 2010, September 29th 2010 p.6/20
  • 7. Network Protocol EDSL data ARQ : State -> State -> Set -> Set where START : ARQ CLOSED OPENING () | START_RECV_ACK : (if_ok : ARQ (OPEN (Ready First)) st t) - (on_timeout : ARQ OPENING st t) -> ARQ OPENING st t | END : ARQ (OPEN (Ready n)) CLOSING () | END_RETRY : ARQ CLOSING CLOSING () | END_RECV_ACK : (if_ok: ARQ CLOSED st t) -> (on_timeout: ARQ CLOSING st t) -> ARQ CLOSING st t ... ICFP 2010, September 29th 2010 p.7/20
  • 8. Network Protocol EDSL data ARQ : State -> State -> Set -> Set where ... | WITHIN : Time -> (action : ARQ st st t) -> (on_timeout : ARQ st st t) -> ARQ st st t | IF : Bool -> (if_true : ARQ st st t) -> (if_false : ARQ st st t) -> ARQ st st t | RETURN : t -> ARQ st st t | BIND : ARQ st st t -> (k : t -> ARQ st st t) -> ARQ st st t; ICFP 2010, September 29th 2010 p.8/20
  • 9. Network Protocol EDSL Interpreter The interpreter for ARQ is parameterised over the actual network data, and keeps track of time to check for timeouts. params (s:Socket, host:String, port:Int) { interpBy : Time -> (prog:ARQ st st t) [static] -> IO (Maybe t); ... interpBy t END = checkTime t (sendPacket s host port (CTL S_BYE)); ... } checkTime : Time -> (IO t) -> IO (Maybe t); ICFP 2010, September 29th 2010 p.9/20
  • 10. Sending Packets An example program, which opens a connection, sends a batch of packets, then closes it, within i microseconds: sendNumber : Time -> Nat -> ARQ CLOSED CLOSED (); sendNumber i tot = WITHIN i (do { open_connection 500000; session 500000 O tot First; close_connection 500000; (TRACE "Timed out"); The types ensure that the protocol is followed; any protocol violation is a type error. ICFP 2010, September 29th 2010 p.10/20
  • 11. Sending Packets The following function sends tot packets, with no payload, with timeout i per packet. session : Time -> Nat -> Nat -> (sq:Seq) -> ARQ (OPEN (Ready sq)) CLOSING (); session i n tot sq = IF (n == tot) END (do { TRACE ("Sending " ++ showNat n); send sq i; session i (S n) tot (Next sq); }); This program is recursive and not obviously terminating. ICFP 2010, September 29th 2010 p.11/20
  • 12. Sending Packets (Specialised) Partial evaluation of the ARQ interpreter with this program yields: sessionS : Socket -> String -> Int -> Time -> Time -> Nat -> Nat -> Seq -> IO (Maybe ()); sessionS s h p t i n tot sq = do { checkTime t (if (n == tot) then checkTime t (sendPacket s h p (CTL S_BYE)) else do { putStr ("Sending " ++ showNat n); checkTime t (sendS s h p t sq i); checkTime t (sessionS s h p t (S n) i tot (Next sq))); } ICFP 2010, September 29th 2010 p.12/20
  • 13. Partial Evaluation In order to achieve this result, we: Changed the evaluator to allow caching of intermediate results Cache intermediate results for functions with declared static arguments This speci鍖cally prevents in鍖nite unfolding of recursive calls Host languages job details in the paper Followed some clearly de鍖ned guidelines when implementing the interpreter EDSL developers job details in the paper ICFP 2010, September 29th 2010 p.13/20
  • 14. Results Run time, in seconds of user time, for a variety of DSL programs: Program Spec Gen Java C fact1 0.017 8.598 0.081 0.007 fact2 1.650 877.2 1.937 0.653 sumlist 3.181 1148.0 4.413 0.346 copy 0.589 1.974 1.770 0.564 copy_dynamic 0.507 1.763 1.673 0.512 copy_store 1.705 7.650 3.324 1.159 sort_file 5.205 7.510 2.610 1.728 ARQ 0.751 0.990 ICFP 2010, September 29th 2010 p.14/20
  • 15. Results Run time, in seconds of user time, for a variety of DSL programs: Program Spec Gen Java C fact1 0.017 8.598 0.081 0.007 fact2 1.650 877.2 1.937 0.653 sumlist 3.181 1148.0 4.413 0.346 copy 0.589 1.974 1.770 0.564 copy_dynamic 0.507 1.763 1.673 0.512 copy_store 1.705 7.650 3.324 1.159 sort_file 5.205 7.510 2.610 1.728 ARQ 0.751 0.990 ICFP 2010, September 29th 2010 p.15/20
  • 16. Results Run time, in seconds of user time, for a variety of DSL programs: Program Spec Gen Java C fact1 0.017 8.598 0.081 0.007 fact2 1.650 877.2 1.937 0.653 sumlist 3.181 1148.0 4.413 0.346 copy 0.589 1.974 1.770 0.564 copy_dynamic 0.507 1.763 1.673 0.512 copy_store 1.705 7.650 3.324 1.159 sort_file 5.205 7.510 2.610 1.728 ARQ 0.751 0.990 ICFP 2010, September 29th 2010 p.16/20
  • 17. Conclusions I DRISs type system occupies a sweet spot where partial evaluation is particularly effective. Tagless interpreters Existing evaluator; only minor changes required Comparable performance to hand written C/Java . . . . . . but veri鍖ed resource usage, via EDSLs This is not unique to I DRIS! Techniques equally applicable to Agda, Coq, Guru, Trellys, Haskell (with GADTs). . . ICFP 2010, September 29th 2010 p.17/20
  • 18. . . . and 鍖nally I have been packaging and documenting I DRIS. Please give it a go! cabal install idris http://www.idris-lang.org/ http://www.idris-lang.org/tutorial/ Thank you for your attention. ICFP 2010, September 29th 2010 p.18/20
  • 19. Partial Evaluation Guidelines An EDSL developer can fully exploit partial evaluation by following these guidelines: 1. Index the EDSL representation by its type 2. The interpreter must only pattern match on the EDSL program to be translated 3. Auxiliary functions which match on dynamic data must not be passed EDSL code 4. Ensure that all of program construction, generation and transformation can be evaluated statically Note: this rules out higher order functions, for the moment! ICFP 2010, September 29th 2010 p.19/20
  • 20. Network Protocol EDSL data ARQ : State -> State -> Set -> Set where ... | SEND : Packet -> ARQ (OPEN (Ready n)) (OPEN (Waiting n)) () | RESEND : Packet -> ARQ (OPEN (Waiting n)) (OPEN (Waiting n)) () | RECV_ACK : (if_ok : ARQ (OPEN (Ready (Next n))) st t (on_timeout : ARQ (OPEN (Waiting n)) st t) -> ARQ (OPEN (Waiting n)) st t ... ICFP 2010, September 29th 2010 p.20/20