Slashdot Mirror


User: laudney

laudney's activity in the archive.

Stories
0
Comments
12
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 12

  1. Re:What a buffoon on Porn Site Sues Google Over Linked Images · · Score: 0

    They are not idiots. They are sueing Google to get publicized. How many visits can Slashdot generate alone?!

  2. Re:Excellent teamwork on Chinese Team Heading for Coldest Spot on Earth · · Score: 1
    We find that most things work (chips etc) but we test all the parts here first.
    Chips not only should work, but also can be overlocked.
  3. Re:Virtualisation features? on Xen 2.0 Virtual Machine Monitor Released · · Score: 3, Insightful

    Google for "Intel Vanderpool".

  4. Re:It's Not Just The Price on Does Microsoft Need China? · · Score: 1

    So what? A person who earns 1k/mon and a person who earns 10k/mon both are able to buy MS windows when they need to. The income makes no difference for a product of which volume is the most important. We are not talking about Bentley or Royce Rolls.

  5. Re:Rather... Does China need Microsoft? on Does Microsoft Need China? · · Score: 1
    I predict that in 20 years, a Chinese OS is dominating market share in eastern countries.
    That may get delayed by a year or two. I haven't finished my PhD in CS yet.... and I'm still hesitating between Linux, FreeBSD and Plan9...
  6. Re:It's Not Just The Price on Does Microsoft Need China? · · Score: 1
    Because the Chinese market is not big enough to justify the cost? 80+% of the population are tied up in agriculture, which makes the none-agriculture population comparable to the US... but given the significantly lower living standards, its not very fesible to "develop something that works for China", at least in the near future, and in the profit driven environment, it's not an attractive investment.
    Having a new market as large as the US is not attractive??!!
  7. Re:Dual core - what's the point? on Dual Caches for Dual-core Chips · · Score: 1

    First, when you double execution units and instruction fetch/decode units and reorder buffers, you are creating two cores! Logical processors share all the execution components but each with a copy of general registers etc. Second, SMT and CMP (chip multiprocessor) aim to solve different problems. SMT is to overcome the memory access latency. When one logical processor is idling, the other can jump in and make use of the executino unit. CMP is to bringing extra computing power onto the chip without exponentially increasing power comsuption and die size and transistor numbers and design/debug complexity. Third, clock is really a big problem. At GHz, clock signal cannot travel across a 20mm die. As a result, we either add several low clockrate cores onto the die or choose asynchronous chips which are a hell difficult to design and verify!!

  8. Re:"Montecito" on Dual Caches for Dual-core Chips · · Score: 1

    Actually this is not just a wild guess. I have inside information that Intel is going to release 64-core CPUs in 5 years. Those multi-core CPUs target three latest emerging workloads: (1) pattern recognition; (2) data mining; (3) data synthesizing. And it's more a software problem than a hardware challenge. Better figure out how to use all those cores in the most efficient way.

  9. Re:yeah, on Dual Caches for Dual-core Chips · · Score: 2, Insightful

    The cause for cache conflict is not a hardware but a software one. Suppose there is one process/thread running on each core. When the two processes have incompatible instruction/data streams that evict each other out of the cache, performance is seriously reduced. This requires an intelligent enough OS scheduler.

  10. Re:Mars on Mars Had Surface Water for Eons · · Score: 1

    The details of experiment done on Viking are available in the chapter five "Blues for a Red Planet" in the book "Cosmos" by Carl Sagan. It also explains why the results of experiemnt are controversial.

  11. Re:Algorithms on "Evolved" Caches Could Speed the Net · · Score: 4, Insightful

    Garbage collection problems are far easier than caching problems in networks. There are many reasons. The most important one is that in garbage collection, 'references' are basically 'pointers'. An object that's not pointed to by any other objects is considered garbage. And don't forget, in garbage collection, you can even 'stop the world'!

    By contrast, in caching, 'references' are 'client requests', which are unpredictable and highly variable. Furthermore, on busy networks, there is seldom a moment for you to 'stop the world' and 'evolve' for a while!

    In the story, people use network simulators and randomly generated requests. Since network simulators are notoriously simplistic and inaccurate, and caching is heavily influenced by real-life workloads, I'm interested to know whether their algorithm is applicable in reality.

  12. Correlation vs Mechanism on Security Statistics and Operating System Conventional Wisdom · · Score: 5, Insightful

    In research, it's vital to differentiate between correlation and mechanism. Stating that Linux and Mac OS/X are less secure than Windows based on kindergarten-level integer comparison is correlation: i.e. following/duplicating superficial attributes of known objects in hope of getting the same results in other objects. This is almost always baseless and useless. It's more important to undertand the underlying hidden reasons, or mechanisms: Windows security problems stem from awful designs in OS, such as integration of all sorts of applications into kernel space for speed acceleration. Whilst Linux and Mac OS/X security problems are mostly from mis-configurations.