Sun's having a sale over the next two weeks to mark it's 25th anniversary. Looks like there are some very good discounts. Hurry it ends May 7th.
Sun's 25th Anniversary Sale
OpenSPARC T1 v1.4 adds significant new functionality as well as new platform support in its hardware bundle. On the design side, it adds knob to create single core, single thread implementation of the OpenSPARC T1. This, we believe, will be useful in creating multi-core designs that do not include hardware threading. Additionally, it also provides an option to create FPGA implementation from the base design. This FPGA option creates a fully synchronous design with better utilization of on-chip FPGA resources like Block RAMs and Multipliers. And finally, version v1.4 also includes an option to remove Stream Processing Unit (SPU) from the design. Since SPU is essentially an on-chip hardware accelerator for cryptographic functions, one can choose to remove it for more general purpose CPU implementations.
Although three options described above can be chosen independent of each other, combining them will create an FPGA implementation with the smallest possible area foot-print. Needless to say, we have also included verification environment for the new additions and also added, for the first time, elementary support for netlist verification through vector playback.
Together with design enhancements, OpenSPARC T1 v1.4 also supports x86_64 hardware platform.
For more details, please check the "OpenSPARC T1 Processor Design and Verification User's Guide" included under to "doc" directory of the hardware distribution.
As a follow-up to the Sun Net Talk on OpenSPARC, an Expert Exchange, a live Q&A chat with Sun engineers on OpenSPARC was held on Wednesday, January 31 at 10am. The transcript is now available under the Expert Exchange archive.
The Expert Exchange was excellent. Lots of questions and answers, 29 in total. The chat application was very good, started without a fuss. One textarea to submit questions and another with the ongoing Q&A. My only negative comment would be that the chat monitor should have had a welcome message or a status that the exchange had started, since it was not obvious that it had. The first Q&A didn't appear until 12-15 minutes after 10am. Overall well worth the time spent. Below are the results from a short poll offerred during the session.
Highlights:
57 Live attendees (14 Sun employees)
29 Online questions answered
23 % of the audience completed the poll
69% of the audience responding to the poll are interested in adopting course work for OpenSPARC and Cool Tools
The Polling Results are very interesting
23% of the audience completed the poll
21 Started the poll, 13 Completed the poll
Have you downloaded the OpenSPARC source code?
No - 58%
Yes - 42%
What is your reason for interest in OpenSPARC?
General interest - 54%
Education - 31%
Product development - 8%
Research - 8%
Have you downloaded any of the Cool Tools?
No - 67%
Yes - 33%
Which Cool Tools are you interested in?
Developer (Sun Studio 11, GCC for SPARC Systems) - 69%
Deployment (coolstack, consolidation tool, cooltst) - 15%
Performance tuning (ats/bit/spot) - 15%
Are you interested in adopting course work for OpenSPARC and Cool Tools?
Yes - 69%
No - 39%
Please rate this Expert Exchange event. Specifically what did you think of the chat content?
Above average - 46%
Exceptional - 38%
Average - 15%
Below average - 0%
Poor - 0%
Please rate this Expert Exchange event. Specifically what did you think of the tool?
Exceptional - 38%
Above Average - 38%
Average - 23%
Below Average - 0%
Poor - 0%
After participating in today's Expert Exchange, are you more or less inclined to consider Sun as a vendor?
More Inclined - 77%
No change - 15%
Less Inclined - 8%
How often do you talk to your Sun sales representative or Sun partner?
Do not have a relationship - 31%
Infrequently - once per year - 31%
Occasionally - once every 3-6 months- 23%
Frequently - once per month - 15%
Would you recommend Sun for purchase of the products and solutions discussed in this Expert Exchange?
Yes - 100%
No - 0%
Here's my little guide (maybe not so little) to help with setting up TWiki on a Sun Fire T2000 running Solaris 10. I started with the Cool Stack but quickly found that I needed a few other pieces of software to get everything working properly. I also wanted LDAP support which wasn't enabled in Cool Stack. All of these software packages always have new releases, I provided version number just for reference. Please send me feedback, I'm sure some of this isn't as clear as it can be.
Setup Solaris 10 11/06 (or update 3, I'll cover this in a seperate entry) and install CoolTuner which will keep your Sun Fire T1000 or T2000 updated with the latest tunning parameters and patches.
We also need a few additional pieces of software to support TWiki. The additional software pieces are:
rcs-5.7
patch-2.5.4
diffutils-2.8.1
grep-2.5.1a
make-3.81
Download and untar each of the above packages and use the following commands to build. The compiler flags provide a very good level of optimization and we want the install to be placed in /usr/local. Make sure that the Sun Studio 11 compilers and /usr/local/bin are in your path first.
CFLAGS="-xO4 -xtarget=generic" ./configure --prefix=/usr/local
make
make install
Install CSQamp, CSQperl packages from Cool Stack. Cool Stack installs into /usr/local.
I found that the CSQperl needed a number of extensions added to it. CSQperl is based on Perl 5.8.8. Here's are the key parameters need edwhen you run Configure. Use the defaults in most cases.
Invoked as: CFLAGS="-xO4 -xtarget=generic" ./Configure
Use dynamic libraries
Make libperl dynamic
Use these flags: -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DPERL_USE_SAFE_PUTENV
Use this library path: /lib /usr/lib
Use these optimization flags: -x04 -xtarget=generic
Here are the perl extensions to add. I used cpan to grab and build the additional extensions, it much easier this way since it understands dependences on other extensions and will grab and build those too.
Next we need to build OpenLDAP, I built version 2.3.27 but there is going to be newer versions.
export CPPFLAGS="-I/usr/sfw/include"; export LDFLAGS="-L/usr/sfw/lib"; \
export CFLAGS="-xO4 -xtarget=generic -D_AVL_H"
./configure --prefix=/usr/local \
--sysconfdir=/etc/openldap \
--with-openssl=/usr/sfw \
--with-tls \
--disable-slurpd \
--disable-slapd
make depend
make
make install
Now Apache will need to be rebuild to include support for LDAP. The following is based on how CSQamp builds apache and I've added the additional options to build LDAP support with OpenLDAP.
The package libiconv, libxml, php and mysql that are included in Cool Stack are included in CSQamp, don't need to be re-compiled but if you want here are the commands:
/usr/local/php/bin/phpize
CFLAGS="-xO4 -xtarget=generic" \
/bin/php-config --enable-apc-mmap --enable-apc-sem
The following line should be used for the standalone php in CSQphp package
CFLAGS="-xO4 -xtarget=generic" \
./configure --enable-apc --with-php-config=/usr/local/php5_fastcgi/bin/php-config \
--enable-apc-mmap --enable-apc-sem
Apache adds
There are lots of parameters that can be placed into the httpd.conf file and I will not go through them all since it really depends on your specific setup. Here are a few essential ones.
Add LoadModules for mod_perl and mod_ldap
LoadModule perl_module modules/mod_perl.so
LoadModule ldap_module modules/mod_ldap.so
LoadModule auth_ldap_module modules/mod_auth_ldap.so
Add parameters for mod_ldap
LDAPSharedCacheSize 200000
LDAPCacheEntries 1024
LDAPCacheTTL 600
LDAPOpCacheEntries 1024
LDAPOpCacheTTL 600
Add authentication for the twiki/bin directory
Directory "{path to twiki install}/twiki/bin/">
AllowOverride All
Allow From All
Options ExecCGI
SetHandler cgi-script
AuthType Basic
AuthName "LDAP Login"
AuthLDAPURL ldap://{server}:389/ou=people,dc=sun,dc=com?uid
< / Directory>
TWiki can be installed into the docroot root and here are a few things to add.
edit all files in /bin to use /usr/local/bin/perl
add lib/LocalSite.cfg
add bin/LocalLib.cfg
add bin/.htaccess
add twiki/tools/mod_perl_starutp.pl from http://twiki.org/cgi-bin/view/Codev/ModPerlUnix
when runnin configure for TWiki make sure to everything is clean, no error or warnings.
Three essential plugins are:
LdapContrbLdapNgPluginNewUserPlugin
Some other additional TWiki plugins I've found useful and the perl extensions that will be needed.
ActionTrackerPlugin
Time::ParseDate
Time-modules-2006.0814
CalendarPlugin
Date::Calc
Date-Calc-5.4
Bit::Vector
Bit-Vector-6.4
Carp::Clan
Carp-Clan-5.8
HTML::CalendarMonthSimple
HTML-CalendarMonthSimple-1.25
EditInTablePlugin
ImageGalleryPlugin
LinkOptionsPlugin
RedirectPlugin
Jan
9
Sun Net Talk on OpenSPARC
Check out the latest Sun Net Talk. This one is about,
OpenSPARC: Innovation Opportunities with the World's First Open Source CPU.
Join Fadi Azhari, Darryl Gove, Dave Weaver, Shrenik Mehta and Simon Phipps as they
gave a great overview of OpenSPARC and the Cool Tools in a 32 minute audiovisual presentation.
I'm just back from a two week vacation and catching up on things. Happy New Year!! 2007 should be an exciting year, there are many innovations and products to look forward to. Some that have my interest are:
OpenSPARC - The community is forming and growing. I expected to see more innovation occurring and people using OpenSPARC T1 in ways we haven't anticipated. Academic interesting is very strong and we should see courses at various Universities using OpenSPARC T1 in their teaching materials.
Multi-Core CPUS - Multi-Core systems are really coming into the mainstream with AMD and Intel focused on both dual-core and quad-core processors. Sun will be announcing Niagara 2 based systems this year. Very exiting and these products will continue pushing the CMT (chip multi threading) architecture to higher levels of performance and integration. Sun APL systems will be introduced with multi-core/multi-threaded CPUs. IBM will introduce Power6.
Java - With Java now licensed under GPLv2, what innovation we will see there?
Virtualization - Driving the push for virtualization is cost reduction through server consolidation, dynamic provisioning, and disaster recovery. Multi-core CPUs bring a lot of processing power and consolidation is one way to effectively use it.
Gaming - There will be a new set of games that will really start to take advantage of multi-core cpus and with dual HD screens and high quality audio, games will be more immersive with more realistic physic modeling. Thats just for PC based games. On the console side, with PlayStation3, Nitendo Wii and Microsoft Xbox 360 released, there will be a three way battle to see which console will have the best suite of games.
Should be a great year and to start us out, Sun has just announced new enhanced Sun Fire T1000 and T2000 systems. The major enhancements being faster CPUs (1.4 Ghz) and 64GB memory configuration. Look here.
I just read a new developer diary entry by Brad Wardel on taking advantage of multi-core CPUs. He is the AI developer on a new game, Galactic Civilizations II: Dark Avatar. Here's a scenario he paints:
Player sits down on a Friday night to play Galactic Civilizations III, loads up the game, and starts.
Upon contact with the Drengin Empire...
Drengin: "So Brad, I see you're playing again on another Friday night. That's pretty sad. Last Friday you played for 5 hours. According to your Tivo, you didn't record Battlestar Galactic. Loser. So, you going to do your usual build up a massive army while trading with me to get good relations and then attack? Because, this week we're playing by my rules. That's right. Here's how tonight's game is going to go. You're going to let me win. If you quit or defeat me I'm going to upload those baby pictures I found in 'My Documents' up to the Internet. You're going to lose and you're going to suck it down. Also, you're going to exterminate the Torian Conferation. Each game you buddy up to those freaks and I'm sick of it. So this time you're going to betray them like you did me. Yes yes, I know that the Torians have access to your MySpace page but that's a chance you're going to have to take..."
..
Ah yes, we will finally be able to make computer players as malicious as real life human beings! By having them remember between games we can simulate grudges and with a few extra cores, have it learn all about you. EVERYTHING ABOUT YOU.
Multi-Core gaming is here and the future holds amazing potential for what can be done. AI opponents just like human players now that is scary......
Nov
28
50 Aliens, 50 Days
Just found this great giveaway. I guess 20 of them are gone but another 30 still ahead. Verizon is giving gamers a reason to celebrate the holidays in style by giving away 50 Alienware computers in 50 Days. From November 10 through December 29, 2006, we'll be giving away one Alienware PC gaming rig each day, so the more days you play online using Verizon PlayLinc, the more likely you are to win.
They are giving away, Aurora™ 3500 system with an AMD Athlon™ 64 X2 4200+ (dual core) processor.
AMD chips were used in 113 supercomputers, or 22 percent of those on the latest list, up from just 11 percent (or 81) a year ago ago. Intel CPUs took their biggest decline ever, slumping from a high of use in 333 systems or a year ago to 261 or 52 percent of systems on the current list. Power appeared in 93 systems, or 18.6 percent of the computers, up from 73 systems or 14.6 percent one year ago. Intel's Itanium chip family slipped from 37 to 35.
Sun Microsystems has 10 systems on the list all which use AMD's Opteron. The three Sparc systems are Fujistu models using Sun's Sparc64 processor. Hopefully in the future we'll see SPARC climb back onto the list. There are some exciting SPARC processors under development.
Nov
16
Joomla! Wins the 2006 Open Source Content Management System Award
Joomla! is the youngest CMS of the five finalists having originated by the then Mambo development team in August 2005. Joomla! was chosen due to its ease of installation and use along with the active development and community that supports the project.
Joomla! narrowly beats out Drupal, which takes second place.