-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Speedup 'nubBy' by doing more things to intermediate array in-place #205
Conversation
I'm not sure this is safe; aren't you mutating the argument array here? |
Oh never mind, you're only calling |
Not yet. I'm working on that right now. |
Dang... this PR actually slows it down slightly. Branch testing it on current Test run: benchNubBy = do
log "nubBy"
log "---------------"
let shortNats = Array.range 0 100
longNats = Array.range 0 10000
mod3Cmp x y = compare (x `mod` 3) (y `mod` 3)
log $ "nubBy (" <> show (Array.length shortNats) <> ")"
benchWith 1000 \_ -> Array.nubBy mod3Cmp shortNats
log $ "nubBy (" <> show (Array.length longNats) <> ")"
benchWith 100 \_ -> Array.nubBy mod3Cmp longNats `master` branch - output of compiled `nubBy`var nubByEq = function (eq) {
return function (xs) {
return (function __do() {
var arr = Data_Array_ST["new"]();
Control_Monad_ST_Internal.foreach(xs)(function (x) {
return function __do() {
var e = Data_Functor.map(Control_Monad_ST_Internal.functorST)((function () {
var $96 = Data_HeytingAlgebra.not(Data_HeytingAlgebra.heytingAlgebraBoolean);
var $97 = $foreign.any(function (v) {
return eq(v)(x);
});
return function ($98) {
return $96($97($98));
};
})())(Data_Array_ST.unsafeFreeze(arr))();
return Control_Applicative.when(Control_Monad_ST_Internal.applicativeST)(e)(Data_Functor["void"](Control_Monad_ST_Internal.functorST)(Data_Array_ST.push(x)(arr)))();
};
})();
return Data_Array_ST.unsafeFreeze(arr)();
})();
};
};
this PR - output of compiled `nubBy`var nubByEq = function (eq) {
return function (xs) {
return (function __do() {
var arr = Data_Array_ST["new"]();
Control_Monad_ST_Internal.foreach(xs)(function (x) {
return function __do() {
var e = Data_Functor.map(Control_Monad_ST_Internal.functorST)((function () {
var $96 = Data_HeytingAlgebra.not(Data_HeytingAlgebra.heytingAlgebraBoolean);
var $97 = $foreign.any(function (v) {
return eq(v)(x);
});
return function ($98) {
return $96($97($98));
};
})())(Data_Array_ST.unsafeFreeze(arr))();
return Control_Applicative.when(Control_Monad_ST_Internal.applicativeST)(e)(Data_Functor["void"](Control_Monad_ST_Internal.functorST)(Data_Array_ST.push(x)(arr)))();
};
})();
return Data_Array_ST.unsafeFreeze(arr)();
})();
};
}; Benchmarks
|
These are minor optimizations I realized could be done while I worked on #203