BREAKING NEWS: VSM back on Agenda

No right turn is reporting that Education (Freedom of Association) Amendment Bill (Roger Douglas) has been drawn from the ballot this morning:

http://norightturn.blogspot.com/2009/08/drawn_20.html

10 months. That is how long National has been in power for before this issue came up again. I sure as hell hope National do not support it. Everything they have said so far is that they support the current law. So leave it as it is.

More to follow later.

A Library on a Hill.

I walked to uni this morning because it was a nice day and I am sick of not being able to get a park when driving. On the way I took a few photos of the new Library under construction at uni. It is huge. By far the largest building on campus. It is a bit of a pity that I may longer be a student by the time it is open.

The Library as seen from afar dwarfing the other buildings on the campus

The Library as seen from afar dwarfing the other buildings on the campus

The library as seen from behind.

The library as seen from behind.

Massey have also created a photo slideshow of progress on the building:

NZ Education Cuts Start To Hurt

From: http://www.nzherald.co.nz/nz/news/article.cfm?c_id=1&objectid=10589738

He believes that if the Government does not lift its cap on student numbers, universities could be forced to turn away school leavers with University Entrance for the first time in living memory.

Again the question must be asked, what happened to the knowledge economy and life long learning?

However, universities have been stripped of doctoral scholarship funding and $37 million in small funding, including cuts to adult community education that have caused widespread outcry.

This will only make the brain drain larger not smaller.

Professor McCormack, who is also deputy chairman of the New Zealand Vice Chancellors Committee, said what was most worrying was the fact universities had not been given any money to cope with students queuing at their gates.

This year, AUT got 14,000 applications from new students – up from 11,000 to 12,000 in each of the previous five years – and rolls had risen to 5.5 per cent above funding levels.

AUT has a roll of about 20,000 this year.

But despite soaring demand, Education Minister Anne Tolley has told the university it will be penalised if its student numbers top 3 per cent of its cap.

Professor McCormack said the university sector was not asking for a lot of money – just tens of millions from a billion-dollar Budget – to help address the high number of students wanting to get in.

Ms Tolley said yesterday that she was watching the situation carefully and working with the Vice Chancellors’ Committee.

Watching the situation will not make things better, action is required to improve it.

The University of Auckland’s vice chancellor, Professor Stuart McCutcheon, shared Professor McCormack’s concerns, particularly on the loss of doctoral scholarships.

He said his university decided this year not to increase its roll numbers and was now selecting students with “high ability” for all its courses, with the aim of encouraging them through a graduate programme.

The prospect of qualifying school-leavers been turned away from universities has worried student leaders.

Jordan King, a co-president of the New Zealand Union of Students Associations, said he would be “highly concerned at any situation where school-leavers who have the appropriate qualifications at the end of high school are unable to access tertiary education”.

Whatever happened to the knowledge economy?

At the moment I am busy looking at options for my PhD study and methods to support it… aka… scholarships.

Now I know that a few government departments have scholarships available and one of them is the Tertiary Education Commission Top Achiever Doctoral Scholarships.

So off I go to the page to take a look: http://www.tec.govt.nz/templates/standard.aspx?id=675

And what do I find?

As part of the Budget announcement made on 28 May 2009, the Government announced that the Top Achiever Doctoral Scholarship scheme will be disestablished.

Say what?

Where is the commitment to educating the future. The government has made it clear they want to focus education on youth. How is applying for a PhD at 22 not youth? You can’t get through to that level much earlier.

Does the government now expect that each person pay their entire way through a PhD?

Grumble, grumble, grumble.

At least I have a few others to look at. And they are not all in this country either.

Traffic Simulation Intersection Controllers Video

Another week, time for another video.

This one shows changes that have been made to the intersection controllers within the Traffic Simulator.

The give-way controller makes all the cars give way to all the other roads connected into the intersection with a minimum of 2.5 seconds between vehicles.

The traffic lights controller makes all the cars on the green road go at 2 second intervals and makes the others queue with a minimum wait time of 16 seconds.

The round-a-bout controller makes each car give way to the right and then go with a minimum of 3.9 seconds between each car on a road, but multiple cars from multiple roads can cross the intersection at the same time… hence the chaos on the video.

Traffic Sim: Round-A-Bouts

traffic flowing freely

Traffic flowing freely with two roads connecting to each other.

traffic congested into round a bout

Traffic Congested as three roads merge and they have to give way to the road on the immediate right as they enter the intersection, notice how many cars are queued up as compared to those that are leaving.

Simulating / Emulating a MPI Cluster or Supercomputer under Ubuntu Linux

Okay a few posts ago I mentioned that I had been successful in setting up my laptop as a virtual supercomputer.

Here are hopefully some relatively clear instructions on how simple it was to do.

Setting up a MPI development system on Ubuntu Linux

  1. Download Ubuntu – check out the latest version at www.ubuntu.com

  2. Intall the required mpi files.

    For Ubuntu 9.04:
    In a terminal window enter:
    sudo apt-get install libopenmpi1 libopenmpi-dbg libopenmpi-dev openmpi-bin openmpi-common openmpi-dev

    For Ubuntu 10.04:
    In a terminal window enter:
    sudo apt-get install libopenmpi1.3 libopenmpi-dbg libopenmpi-dev openmpi-bin openmpi-common openmpi-dev

  3. Test the mpi install by compiling and running a simple program

    1. mpicc testfile.c -o testfile

    2. mpirun -np 2 ./testfile

      1. Where np is the number of cores * number of processes on your system.

      2. e.g. on a two core laptop np should be 2.

  4. If you get an error regarding ssh when you enter the mpirun command install ssh

    1. sudo apt-get install ssh

  5. If you get requested for your password everytime you run mpirun set up a stored RSA key control

    1. cd $HOME

    2. ssh-keygen -t dsa

    3. cp .ssh/id_dsa.pub .ssh/authorized_keys2

Further reference:

http://www.csc.cam.ac.uk/academic/practicals.html

http://www.math.umbc.edu/~gobbert/mpi.html