cost models
play

Cost Models Chapter Twenty-One Modern Programming Languages, 2nd - PowerPoint PPT Presentation

Cost Models Chapter Twenty-One Modern Programming Languages, 2nd ed. 1 Which Is Faster? Y=[1|X] append(X,[1],Y) Every experienced programmer has a cost model of the language: a mental model of the relative costs of various operations


  1. Cost Models Chapter Twenty-One Modern Programming Languages, 2nd ed. 1

  2. Which Is Faster? Y=[1|X] append(X,[1],Y) � Every experienced programmer has a cost model of the language: a mental model of the relative costs of various operations � Not usually a part of a language specification, but very important in practice Chapter Twenty-One Modern Programming Languages, 2nd ed. 2

  3. Outline � A cost model for lists � A cost model for function calls � A cost model for Prolog search � A cost model for arrays � Spurious cost models Chapter Twenty-One Modern Programming Languages, 2nd ed. 3

  4. The Cons-Cell List � Used by ML, Prolog, Lisp, and many other languages � We also implemented this in Java A : [] ?- A = [], | B = .(1,[]), B : [] | C = .(1,.(2,[])). A = [], 1 B = [1], C = [1, 2]. [] C : 1 2 Chapter Twenty-One Modern Programming Languages, 2nd ed. 4

  5. Shared List Structure [] ?- D = [2,3], D : | E = [1|D], 2 3 | E = [F|G]. D = [2, 3], E = [1, 2, 3], E : F = 1, G = [2, 3]. 1 F : G : Chapter Twenty-One Modern Programming Languages, 2nd ed. 5

  6. How Do We Know? � How do we know Prolog shares list structure—how do we know E=[1|D] does not make a copy of term D ? � It observably takes a constant amount of time and space � This is not part of the formal specification of Prolog, but is part of the cost model Chapter Twenty-One Modern Programming Languages, 2nd ed. 6

  7. Computing Length � length(X,Y) can take no shortcut—it must count the length, like this in ML: fun length nil = 0 | length (head::tail) = 1 + length tail; � Takes time proportional to the length of the list Chapter Twenty-One Modern Programming Languages, 2nd ed. 7

  8. Appending Lists � append(H,I,J) can also be expensive: it must make a copy of H [] ?- H = [1,2], H : | I = [3,4], 1 2 | append(H,I,J). H = [1, 2], [] I : I = [3, 4], J = [1, 2, 3, 4]. 3 4 J : 1 2 Chapter Twenty-One Modern Programming Languages, 2nd ed. 8

  9. Appending � append must copy the prefix: append([],X,X). append([Head|Tail],X,[Head|Suffix]) :- append(Tail,X,Suffix). � Takes time proportional to the length of the first list Chapter Twenty-One Modern Programming Languages, 2nd ed. 9

  10. Unifying Lists � Unifying lists can also be expensive, since they may or may not share structure: [] ?- K = [1,2], K : | M = K, 1 2 | N = [1,2]. K = [1, 2], M : M = [1, 2], N = [1, 2]. [] N : 1 2 Chapter Twenty-One Modern Programming Languages, 2nd ed. 10

  11. Unifying Lists � To test whether lists unify, the system must compare them element by element: xequal([],[]). xequal([Head|Tail1],[Head|Tail2]) :- xequal(Tail1,Tail2). � It might be able to take a shortcut if it finds shared structure, but in the worst case it must compare the entire structure of both lists Chapter Twenty-One Modern Programming Languages, 2nd ed. 11

  12. Cons-Cell Cost Model Summary � Consing takes constant time � Extracting head or tail takes constant time � Computing the length of a list takes time proportional to the length � Computing the result of appending two lists takes time proportional to the length of the first list � Comparing two lists, in the worst case, takes time proportional to their size Chapter Twenty-One Modern Programming Languages, 2nd ed. 12

  13. Application The cost model guides reverse([],[]). programmers away from reverse([Head|Tail],Rev) :- solutions like this, which reverse(Tail,TailRev), grow lists from the rear append(TailRev,[Head],Rev). reverse(X,Y) :- rev(X,[],Y). This is much faster: linear rev([],Sofar,Sofar). time instead of quadratic rev([Head|Tail],Sofar,Rev) :- rev(Tail,[Head|Sofar],Rev). Chapter Twenty-One Modern Programming Languages, 2nd ed. 13

  14. Exposure � Some languages expose the shared-structure cons-cell implementation: – Lisp programs can test for equality ( equal ) or for shared structure ( eq , constant time) � Other languages (like Prolog and ML) try to hide it, and have no such test � But the implementation is still visible in the sense that programmers know and use the cost model Chapter Twenty-One Modern Programming Languages, 2nd ed. 14

  15. Outline � A cost model for lists � A cost model for function calls � A cost model for Prolog search � A cost model for arrays � Spurious cost models Chapter Twenty-One Modern Programming Languages, 2nd ed. 15

  16. Reverse in ML � Here is an ML implementation that works like the previous Prolog reverse fun reverse x = let fun rev(nil,sofar) = sofar | rev(head::tail,sofar) = rev(tail,head::sofar); in rev(x,nil) end; Chapter Twenty-One Modern Programming Languages, 2nd ed. 16

  17. fun rev(nil,sofar) = sofar Example | rev(head::tail,sofar) = rev(tail,head::sofar); We are evaluating rev([1,2],nil) . current This shows the contents of activation record memory just before the recursive call that creates a second activation. head: 1 tail: [2] sofar: nil return address previous activation record result: ? Chapter Twenty-One Modern Programming Languages, 2nd ed. 17

  18. fun rev(nil,sofar) = sofar This shows the contents of | rev(head::tail,sofar) = memory just before the rev(tail,head::sofar); third activation. current activation record head: 2 head: 1 tail: nil tail: [2] sofar: [1] sofar: nil return address return address previous previous activation record activation record result: ? result: ? Chapter Twenty-One Modern Programming Languages, 2nd ed. 18

  19. fun rev(nil,sofar) = sofar This shows the contents of | rev(head::tail,sofar) = memory just before the rev(tail,head::sofar); third activation returns. current activation record head: 2 head: 1 tail: nil tail: [2] sofar: [2,1] sofar: [1] sofar: nil return address return address return address previous previous previous activation record activation record activation record result: [2,1] result: ? result: ? Chapter Twenty-One Modern Programming Languages, 2nd ed. 19

  20. fun rev(nil,sofar) = sofar This shows the contents of | rev(head::tail,sofar) = memory just before the rev(tail,head::sofar); second activation returns. All it does is return the same value that was just current returned to it. activation record head: 2 head: 1 tail: nil tail: [2] sofar: [2,1] sofar: [1] sofar: nil return address return address return address previous previous previous activation record activation record activation record result: [2,1] result: [2,1] result: ? Chapter Twenty-One Modern Programming Languages, 2nd ed. 20

  21. fun rev(nil,sofar) = sofar This shows the contents of | rev(head::tail,sofar) = memory just before the rev(tail,head::sofar); first activation returns. All it does is return the same value that was just current activation record returned to it. head: 2 head: 1 tail: nil tail: [2] sofar: [2,1] sofar: [1] sofar: nil return address return address return address previous previous previous activation record activation record activation record result: [2,1] result: [2,1] result: [2,1] Chapter Twenty-One Modern Programming Languages, 2nd ed. 21

  22. Tail Calls � A function call is a tail call if the calling function does no further computation, but merely returns the resulting value (if any) to its own caller � All the calls in the previous example were tail calls Chapter Twenty-One Modern Programming Languages, 2nd ed. 22

  23. Tail Recursion � A recursive function is tail recursive if all its recursive calls are tail calls � Our rev function is tail recursive fun reverse x = let fun rev(nil,sofar) = sofar | rev(head::tail,sofar) = rev(tail,head::sofar); in rev(x,nil) end; Chapter Twenty-One Modern Programming Languages, 2nd ed. 23

  24. Tail-Call Optimization � When a function makes a tail call, it no longer needs its activation record � Most language systems take advantage of this to optimize tail calls, by using the same activation record for the called function – No need to push/pop another frame – Called function returns directly to original caller Chapter Twenty-One Modern Programming Languages, 2nd ed. 24

  25. fun rev(nil,sofar) = sofar Example | rev(head::tail,sofar) = rev(tail,head::sofar); We are evaluating rev([1,2],nil) . current This shows the contents of activation record memory just before the recursive call that creates a second activation. head: 1 tail: [2] sofar: nil return address previous activation record result: ? Chapter Twenty-One Modern Programming Languages, 2nd ed. 25

  26. fun rev(nil,sofar) = sofar | rev(head::tail,sofar) = rev(tail,head::sofar); Just before the third activation. current activation record Optimizing the tail call, we reused the same activation record. head: 2 The variables are overwritten with their new tail: nil values. sofar: [1] return address previous activation record result: ? Chapter Twenty-One Modern Programming Languages, 2nd ed. 26

  27. fun rev(nil,sofar) = sofar | rev(head::tail,sofar) = rev(tail,head::sofar); Just before the third activation returns. current activation record Optimizing the tail call, we reused the same activation record again. We did not need all of it. (unused) The variables are overwritten with their new sofar: [2,1] values. Ready to return the final return address result directly to rev ’s previous original caller activation record ( reverse ) . result: [2,1] Chapter Twenty-One Modern Programming Languages, 2nd ed. 27

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend