¿Cómo funciona exactamente AsParallel?

No parece ponerse en cuclillas para el siguiente programa de prueba. ¿Esto es porque estoy probando con una pequeña lista?

static void Main(string[] args)
{
    List<int> list = 0.UpTo(4);

    Test(list.AsParallel());
    Test(list);
}

private static void Test(IEnumerable<int> input)
{
    var timer = new Stopwatch();
    timer.Start();
    var size = input.Count();
    if (input.Where(IsOdd).Count() != size / 2)
        throw new Exception("Failed to count the odds");

    timer.Stop();
    Console.WriteLine("Tested " + size + " numbers in " + timer.Elapsed.TotalSeconds + " seconds");
}

private static bool IsOdd(int n)
{
    Thread.Sleep(1000);
    return n%2 == 1;
}

Ambas versiones tardan 4 segundos en ejecutarse.

Respuestas a la pregunta(3)

Su respuesta a la pregunta