Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
Search
Archives
Archives
June 2010
(1)
May 2010
(3)
March 2010
(7)
February 2010
(1)
November 2009
(1)
September 2008
(2)
August 2008
(4)
May 2008
(2)
April 2008
(1)
December 2007
(1)
November 2007
(1)
October 2007
(6)
September 2007
(8)
August 2007
(2)
July 2007
(3)
June 2007
(1)
May 2007
(4)
March 2007
(1)
March 2006
(2)
November 2005
(1)
October 2005
(1)
September 2005
(2)
August 2005
(1)
July 2005
(1)
May 2005
(7)
April 2005
(4)
February 2005
(1)
January 2005
(1)
November 2004
(2)
October 2004
(3)
September 2004
(5)
Tags
.NET Futures
Bing
C#
C++\CLI
Code Quality
Data Structures
Design Patterns
F#
Freebase
FsLex
FsYacc
Immutable
JSON
Lex
MEF
MSBuild
Multicore
Neat Samples
OData
Pages
Performance
PowerPack
Puzzle
Xml
Yacc
Common Tasks
Blog Home
Email Blog Author
RSS for posts
RSS for comments
Tagged Content List
Blog Post:
F# Performance Tweaking
Jomo Fisher MSFT
Jomo Fisher—I’ve enjoyed reading the blog series on F# and game development here . Joh had posted an example of F# of using RK4 and showed some performance numbers comparing F# to C++ and OCaml. Don Syme had been reading too and asked if anyone on the F# team wanted to take a stab to see if they could...
on
16 Sep 2008
Blog Post:
Adventures in F#--Tail Recursion in Three Languages
Jomo Fisher MSFT
Jomo Fisher—Here’s the F# I'm looking at today: #light let rec f n = do printf "%d\n" n f (n+1) f 1 This defines a recursive function 'f' that takes a value 'n' as a parameter. This function prints the value of n to the console and then calls itself with n+1. So we've defined a function that will count...
on
19 Sep 2007
Blog Post:
Probing a Hidden .NET Runtime Performance Enhancement
Jomo Fisher MSFT
Jomo Fisher--Matt Warren once told me that the runtime had a performance optimization involving calling methods through an interface. If you only had a small number of implementations of a particular interface method the runtime could optimize the overhead of those calls. Coming from the C++ world where...
on
13 Aug 2007
Blog Post:
LINQ to SQL Beta2 Performance Numbers and the Dynamic Compilation Pattern
Jomo Fisher MSFT
Jomo Fisher--Rico Mariani has been posting about LINQ to SQL perfomance and has finally posted the performance numbers for Beta2: http://blogs.msdn.com/ricom/archive/2007/07/05/dlinq-linq-to-sql-performance-part-4.aspx One of the tricks Rico and Matt Warren used to get this stellar performance was...
on
6 Jul 2007
Blog Post:
Why Symmetric Multicore is a Dead End for PCs
Jomo Fisher MSFT
Jomo Fisher--There are two kinds of programming problems—those that can run in parallel and those that can’t. There’s no special sauce that can turn an inherently serial problem into an efficient parallel algorithm. Today’s top-end desktop has eight cores spread across two processors. All of the cores...
on
25 Jun 2007
Blog Post:
Fast Switching with LINQ
Jomo Fisher MSFT
Jomo Fisher—I’ve run into a performance problem several times in my career that I’ve never found a truly satisfying answer for until now. The problem can be distilled down to this: Look up a value based on a string key. The set of strings is fixed and no unknown key values can occur. Consider my...
on
28 Mar 2007
Page 1 of 1 (6 items)