Tagged Questions
0
votes
1answer
115 views
Haskell - list comprehension can't enumerate N × N
I have to write a function which returns a list of all pairs (x,y) where x,
y ∈ N , and:
x is the product of two natural numbers (x = a • b, where a, b ∈ N) and
x is really bigger than 5 but really ...
6
votes
1answer
111 views
What's the most efficient way to run cross-platform, deterministic simulations in Haskell?
My goal is to run a simulation that requires non-integral numbers across different machines that might have a varying CPU architectures and OSes. The main priority is that given the same initial ...
1
vote
0answers
87 views
Haskell object lifetime performance [duplicate]
foo x y = x*x + y
fat x y = let xx = x*x in xx + y
bar x = \y -> x*x + y
baz x = let xx = x*x in \y -> xx + y
foo' = foo 2
fat' = fat 2
bar' = bar 2
baz' = baz 2
Will repeated calling ...
0
votes
3answers
143 views
Haskell any way to improve this code
Hey I have implemented this code segment as a move ordering system for a alpha-beta pruning function. It does speed up my code by a little but when I profiled my code I saw it was very clunky.
...
9
votes
2answers
283 views
Function Overhead in Functional Languages like Haskell or in Hybrids like Scala [closed]
Coming from imperative languages like Python, Javascript and Java, I was very often reading about function overhead and why to avoid map from a performance perspective. Obviously these are no ...
43
votes
7answers
3k views
Ackermann very inefficient with Haskell/GHC
I try computing Ackermann(4,1) and there's a big difference in performance between different languages/compilers. Below are results on my Core i7 3820QM, 16G, Ubuntu 12.10 64bit,
C: 1.6s, gcc -O3 ...
3
votes
1answer
112 views
Why Haskell function execution time measurment differs from ghc timings?
I want to measure time which Haskell spent to execute some function and use TimeIt package(also i tried these recommendations). But showed time differs from actual time application spent (I've ran ...
0
votes
2answers
111 views
Haskell get function run time
How can i capture the runtime of a Haskell function, for example, a file Main.hs, compiled with GHC containing a function 'bubbleSort' which sorts items in a list:
bubbleSort :: (Ord t) => [t] ...
1
vote
0answers
121 views
Need advice on tuning the performance of a Haskell program
I've written a program in Haskell to do reporting using a bunch of XML files as input. Each xml file contains details of a defect record. Unfortunately, I keep running into the "out of memory" issue.
...
2
votes
2answers
206 views
What is the fastest Traversable instance in the land
I am using the ad library http://hackage.haskell.org/package/ad and I am looking for the fastest traversable to pass to its various functions.
Ideally it would be a data structure that uses a ...
2
votes
1answer
237 views
How efficient can Haskell state be compared to C++, for very stateful games/simulations?
I just can't seem to find any conclusive information on the subject. There's plenty of Haskell game implementations out there, but the ones I've found are small games and it's unclear whether their ...
16
votes
1answer
315 views
GHC Generating Redundant Core Operations
I have the following program for converting 6bit ASCII to binary format.
ascii2bin :: Char -> B.ByteString
ascii2bin = B.reverse . fst . B.unfoldrN 6 decomp . to6BitASCII -- replace to6BitASCII ...
11
votes
1answer
447 views
Most efficient way to seek around in a large file
What's the most efficient way to process really large binary files in Haskell?
The standard answer is to read the entire file as a lazy ByteString and then use something like the Binary packet to ...
4
votes
2answers
200 views
What's the ideal implementation for the Sieve of Eratosthenes between Lists, Arrays, and Mutable Arrays?
In Haskell, I've found three simple implementations of the Sieve of Eratosthenes on the Rosetta Code page.
Now my question is, which one should be used in which situations?
Correcting my initial ...
2
votes
3answers
222 views
haskell foldl' poor performance with (++)
I have this code:
import Data.List
newList_bad lst = foldl' (\acc x -> acc ++ [x*2]) [] lst
newList_good lst = foldl' (\acc x -> x*2 : acc) [] lst
This functions return list with each ...
6
votes
1answer
173 views
Control.Lens performance overhead
I am appreciating the Control.Lens package. It really helps with the slightly weak Haskell record syntax. I'm working on some parts of a library where performance is a concern. Does anyone know what ...
1
vote
1answer
241 views
GHC Performance: Why does more work take *much* less time?
Unfortunately, there is a lot of code involved for the entire example. You can see the full module here (which still won't compile), the pseudocode function f below corresponds to the 'FIXME' tag in ...
11
votes
1answer
351 views
How fast is Data.Sequence.Seq compared to []?
Clearly Seq asymptotically performs the same or better as [] for all possible operations. But since its structure is more complicated than lists, for small sizes its constant overhead will probably ...
7
votes
2answers
245 views
Pointfree version worsens the performance
Well, it turns out that I got this function defined in my program code:
st_zipOp :: (a -> a -> a) -> Stream a -> Stream a -> Stream a
st_zipOp f xs ys = St.foldr (\x r -> st_map (f ...
17
votes
2answers
521 views
How much does it cost for Haskell FFI to go into C and back?
If I want to call more than one C function, each one depending on the result of the previous one, is it better to create a wrapper C function that handles the three calls? Will it cost the same as ...
4
votes
4answers
211 views
Listing all the contents of a directory by breadth-first order results in low efficiency
I writed a Haskell module to list all the contents of a directory by breadth-first order. The below is the source code.
module DirElements (dirElem) where
import System.Directory ...
2
votes
1answer
113 views
Performance improvement in unsigned integers function
Any Word32 number can be expressed as a linear combination of Word8 numbers as follows:
x = a + b * 2^8 + c * 2^16 + d * 2^24
In other words, this is the representation of x in the base 2^8. In ...
14
votes
2answers
278 views
How to use phase control of inlining in haskell?
Documentation says,
Sometimes you want to control exactly when in GHC's pipeline the INLINE pragma is switched on.
Why should I ever want this? (Except when I also use RULES pragma, in this ...
18
votes
1answer
510 views
Compile unsafe Haskell
It seems that Haskell tries to be a safe language, and tries to help the programmer from mistakes. For example, pred/succthrows error if outside, and div 1 0 also throws. What are these safe Haskell ...
4
votes
1answer
137 views
Fusion optimization with intermediate values
Will GHC transform an expression with intermediate values as efficiently as one without?
e.g.
main = print $ f ["aa", "bb", "cc"]
f x =
let a = map (map toUpper) x
b = filter (\z -> ...
27
votes
4answers
854 views
Examples where compiler-optimized functional code performs better than imperative code
One of the promises of side-effect free, referentially transparent functional programming is that such code can be extensively optimized.
To quote Wikipedia:
Immutability of data can, in many ...
13
votes
1answer
124 views
How to properly optimize MArray functions for speed?
I'm working on a sorting library for MArrays. Speed is important, so I want to optimize it as much as possible.
Currently, I simply INLINE the sorting functions. This speeds up the code more than 10 ...
8
votes
2answers
133 views
Breaking lists at index
I have a performance question today.
I am making a (Haskell) program and, when profiling, I saw that most of the time is spent in the function you can find below. Its purpose is to take the nth ...
0
votes
1answer
113 views
How faster Int comparison is than ByteString comparison in Haskell?
I'm implementing patterns mining algorithm, and usually input data are file with the following format
item1 item2 item3
item0 item3 item10
....
item30 item40 item30
where usually itemx is a String. ...
24
votes
1answer
1k views
Idiomatic option pricing and risk using Repa parallel arrays
Suppose I want to price a call option using a finite difference method
and repa then the following does the job:
import Data.Array.Repa as Repa
r, sigma, k, t, xMax, deltaX, deltaT :: Double
m, n, p ...
4
votes
1answer
120 views
Performance of reservoir sampling vs. getting the length of a list and picking random elements
I have written two functions to pick a random element out of a list of unknown length. The first uses reservoir sampling (with a reservoir of size 1), and the second gets the length of the list to ...
2
votes
2answers
191 views
Does “Call by name” slow down Haskell?
I assume it doesn't.
My reason is that Haskell is pure functional programming (without I/O Monad), they could have made every "call by name" use the same evaluated value if the "name"s are the ...
20
votes
2answers
394 views
Why are difference lists more efficient than regular concatenation?
I am currently working my way through the Learn you a haskell book online, and have come to a chapter where the author is explaining that some list concatenations can be ineffiecient: For example
...
3
votes
1answer
188 views
When should Haskell's Data.Map be used in favor of a list of tuples?
Recently I needed to compare two sets of historical data. Since sometimes a day or two was missing in one of them and I wanted to be precise, I decided to create a list of all possible dates and two ...
11
votes
3answers
281 views
Why is Haskell's default string implementation a linked list of chars?
The fact that Haskell's default String implementation is not efficient both in terms of speed and memory is well known. As far as I know the [] lists in general are implemented in Haskell as ...
2
votes
1answer
132 views
Haskell Fibonacci sequence performance depending on methodology
I was trying out different approaches to getting a number at a given index of the Fibonacci sequence and they could basically be divided into two categories:
building a list and querying an index
...
8
votes
1answer
384 views
C vs Haskell Collatz conjecture speed comparison [closed]
My first real programming experience was with Haskell. For my ad-hoc needs I required a tool that was easy to learn, quick to code and simple to maintain and I can say it did the job nicely.
However, ...
1
vote
0answers
110 views
Haskell: Caches, memoization, and referential transparency [duplicate]
Possible Duplicate:
When is memoization automatic in GHC Haskell?
I understand that due to referential transparency in Haskell programs, it should be nearly trivial to memoize most ...
4
votes
2answers
159 views
Haskell - converting from List to Data.Vector
After profiling my haskell program, I've found that 66% of the time in the program is spent indexing into lists. The solution seems to be using Data.Vector, but I'm having trouble converting: when I ...
5
votes
1answer
108 views
Functionally comparing data sets to each other once with Haskell
After over a year of mental wrangling, I finally understand Haskell well enough to consider it my primary language for the majority of my general programming needs. I absolutely love it.
But I still ...
2
votes
3answers
160 views
High CPU usage on hFlush in Haskell
I found that the following Haskell code uses 100% CPU and takes about 14secs to finish on my Linux server.
{-# LANGUAGE OverloadedStrings #-}
module Main where
import qualified ...
1
vote
1answer
117 views
Efficiently converting an [Integer] to [Float] with Haskell
Here's a simplified example of the entries I have in the text files I'm reading --
Set1 1 2 3
Set2 6 7 8
I'm trying to write a function that can convert the above strings into a list of tuples --
...
4
votes
2answers
204 views
Haskell: unexpected time-complexity in the computation involving large lists
I am dealing with the computation which has as an intermediate result a list A=[B], which is a list of K lists of the length L. The time-complexity to compute an element of B is controlled by the ...
6
votes
1answer
167 views
How do I optimize a loop which can be fully strict
I'm trying to write a brute-force solution to Project Euler Problem #145, and I cannot get my solution to run in less than about 1 minute 30 secs.
(I'm aware there are various short-cuts and even ...
2
votes
4answers
140 views
Statement for checking only once?Haskell
I have two lists of unequal length. When I add both of them I want the final list to have the length of the longest list.
addtwolists [0,0,221,2121] [0,0,0,99,323,99,32,2332,23,23]
...
1
vote
1answer
166 views
Slow file parsing with regex
just tried to rewrite trivial file parser from pythonto haskell but found it painfully slow (about 15 times slower on the same machine). Code compiled with ghc -O2.
The goal is to count number of ...
14
votes
2answers
279 views
When to use various language pragmas and optimisations?
I have a fair bit of understanding of haskell but I am always little unsure about what kind of pragmas and optimizations I should use and where. Like
Like when to use SPECIALIZE pragma and what ...
17
votes
3answers
487 views
How much overhead do function calls have in Haskell?
I am new to Haskell and I am puzzled by the cost of a function call, which seems to be completely unreasonable to me, and makes me think I am doing something fundamentally wrong.
Consider the ...
2
votes
2answers
269 views
List of divisors of an integer n (Haskell)
I currently have the following function to get the divisors of an integer:
-- All divisors of a number
divisors :: Integer -> [Integer]
divisors 1 = [1]
divisors n = firstHalf ++ secondHalf
...
2
votes
2answers
282 views
Two simple codes to generate divisors of a number. Why is the recursive one faster?
While solving a problem, I had to calculate the divisors of a number. I have two implementations that produce all divisors > 1 for a given number.
The first is using simple recursion:
divisors :: ...



