﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1451	Backend scaling for simple array-equation	Martin Sjölund	Patrick Täuber	"Scales to the power of 3.5... Horrible

n=50 0.231s
n=100 2s
n=150 9s
n=200 27s
n=10000 115 days

{{{
class A
  function fn
    input Real t;
    input Integer n;
    output Real out[n];
  algorithm
    out := {i*t for i in 1:n};
  end fn;
  parameter Integer n = 4000;
  Real r[n];
equation
  r = fn(time, n);
end A;
}}}"	defect	assigned	high	Future	Backend				Martin Sjölund Henning Kiel
