We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexSuggestions & BugsSoftware Bugs › 115 compiles really slow
Page Index Toggle Pages: 1
115 compiles really slow? (Read 1298 times)
115 compiles really slow?
May 30th, 2006, 6:40am
 
I don't know what's happening. I tried a few things but it's the same.

Processing 0115 compiles slowly for me. I'm on a PC. A simple blank sketch with a background graphic usually takes a second or two to compile and run, now is taking at least 5-10 seconds.
Re: 115 compiles really slow?
Reply #1 - Aug 3rd, 2006, 4:24am
 
do you have a huge sketchbook? is this different from 114?
Re: 115 compiles really slow?
Reply #2 - Aug 4th, 2006, 7:59pm
 
I do have a huge sketchbook, and it behaves differently from 114.

Re: 115 compiles really slow?
Reply #3 - Aug 17th, 2006, 8:13am
 
I've just downloaded 0115 too and it's behaving weird. It's definitely slower feeling. I've only played with Processing over the years I think the 1st version I downloaded was around 0068 so I  know a lot has changed.

I'm using linux, with this version of java: 1.5.0_06.
Below is some code I pasted in to try things out again. It is significantly slower than this version: http://pages.cpsc.ucalgary.ca/~pneumann/projects/fractals/lorenz/index.html
There's no way for me to know which version of Processing was used to compile w/o asking the author. In the meantime I'll try an earlier version. I just wanted to know if anyone else is dealing with slowdown in this version?

Quote:


float x1,y1,z1,xneu,yneu,zneu,dt,ten_dt,eight_thirds;
int x,y;

void setup(){
 size(640,480);
 background(0, 0, 255);

 stroke(215,215,215);
 x1=0.0;
 xneu = x1;
 y1=10.0;
 yneu = y1;
 z1=4.0;
 zneu = z1;
 dt=0.001;
 ten_dt = 0.01;
 eight_thirds = 8.0/3.0;
 noSmooth();
}

void draw(){

 xneu += (y1 - x1) * ten_dt;
 yneu += (x1 * (28.0 - z1) - y1) * dt;
 zneu += (x1 * y1 - eight_thirds * z1) * dt;
 x = ceil((((xneu+0.6*yneu)*9.0))+300);
 y = ceil(((zneu * 10.56))-20);
 point(x, y);
 x1 = xneu;
 y1 = yneu;
 z1 = zneu;
}


Re: 115 compiles really slow?
Reply #4 - Sep 13th, 2006, 3:54am
 
mflux wrote on Aug 4th, 2006, 7:59pm:
I do have a huge sketchbook, and it behaves differently from 114.

can you give any more info so i can track this down does it still happen when you empty out your sketchbook, for instance and you're running 114 and 115 one after another on the same machine
Re: 115 compiles really slow?
Reply #5 - Sep 13th, 2006, 3:56am
 
corntoole wrote on Aug 17th, 2006, 8:13am:
I've just downloaded 0115 too and it's behaving weird. It's definitely slower feeling. I've only played with Processing over the years I think the 1st version I downloaded was around 0068 so I  know a lot has changed.

that's a different issue, and not related to this bug report. see discussion elsewhere and a description of changes in the FAQ. the default renderer in releases since beta is slower but more accurate than the alpha renderer.
Re: 115 compiles really slow?
Reply #6 - Sep 24th, 2006, 5:38pm
 
fry wrote on Sep 13th, 2006, 3:54am:
can you give any more info so i can track this down does it still happen when you empty out your sketchbook, for instance and you're running 114 and 115 one after another on the same machine

closing thread since i haven't heard anything back.. if this is truly a problem, please post an item in the bugs db for it.
Page Index Toggle Pages: 1