5

C#でウィンドウアプリケーションを作成しました。次に、このアプリケーションのCPUアフィニティを設定します。2プロセッサ、4プロセッサ、8プロセッサ、または8プロセッサを超える場合があります。

インターフェイスからの入力を使用してCPUアフィニティを設定したい。

どうすればこれを達成できますか?Environment.ProcessorCountを使用してアフィニティを設定するにはどうすればよいですか?

4

4 に答える 4

13

これを試して:

Process.GetCurrentProcess().ProcessorAffinity = (System.IntPtr)2;

詳しくはこちら

ProcessorAffinityは、各プロセッサをビットとして表します。ビット 0 はプロセッサ 1 を表し、ビット 1 はプロセッサ 2 などを表します。次の表は、4 プロセッサ システムで可能なProcessorAffinityのサブセットを示しています。

Property value (in hexadecimal)  Valid processors

0x0001                           1
0x0002                           2
0x0003                           1 or 2
0x0004                           3
0x0005                           1 or 3
0x0007                           1, 2, or 3
0x000F                           1, 2, 3, or 4

以下に小さなサンプル プログラムを示します。

//TODO: manage exceptions
class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("Total # of processors: {0}", Environment.ProcessorCount);
        Console.WriteLine("Current processor affinity: {0}", Process.GetCurrentProcess().ProcessorAffinity);
        Console.WriteLine("*********************************");
        Console.WriteLine("Insert your selected processors, separated by comma (first CPU index is 1):");
        var input = Console.ReadLine();
        Console.WriteLine("*********************************");
        var usedProcessors = input.Split(',');

        //TODO: validate input
        int newAffinity = 0;
        foreach (var item in usedProcessors)
        {
            newAffinity = newAffinity | int.Parse(item);
            Console.WriteLine("Processor #{0} was selected for affinity.", item);
        }
        Process.GetCurrentProcess().ProcessorAffinity = (System.IntPtr)newAffinity;
        Console.WriteLine("*********************************");
        Console.WriteLine("Current processor affinity is {0}", Process.GetCurrentProcess().ProcessorAffinity);
    }
}
于 2012-12-12T07:10:10.580 に答える
2

糸の相性を求める方へ。

public class CpuAffinity
{
    [DllImport("kernel32.dll")]
    static extern IntPtr GetCurrentThread();

    [DllImport("kernel32.dll")]
    static extern IntPtr SetThreadAffinityMask(IntPtr hThread, IntPtr dwThreadAffinityMask);

    /// <summary>
    /// Sets the current Thread to have affinity to the specified cpu/processor if the system has more than one.
    /// 
    /// Supports most systems as we use a signed int; Anything more than 31 CPU's will not be supported.
    /// </summary>
    /// <param name="cpu">The index of CPU to set.</param>
    public static void SetCurrentThreadToHaveCpuAffinityFor(int cpu)
    {
        if (cpu < 0)
        {
            throw new ArgumentOutOfRangeException("cpu");
        }

        if (Environment.ProcessorCount > 1)
        {
            var ptr = GetCurrentThread();
            SetThreadAffinityMask(ptr, new IntPtr(1 << cpu));

            Debug.WriteLine("Current Thread Of OS Id '{0}' Affinity Set for CPU #{1}.", ptr, cpu);
        }else
        {
            Debug.WriteLine("The System only has one Processor.  It is impossible to set CPU affinity for other CPU's that do not exist.");
        }
    }
}
于 2015-03-25T01:10:46.957 に答える
1

System.Diagnostics.Process.ProcessorAffinity

何に使いたいEnvironment.ProcessorCountですか?ユーザー入力の検証? とにかく、特定のプロセッサ (#1 または #2 または #3...) を選択する場合は、次のようなビットマスクを作成します。

if (userSelection <= 0 || userSelection > Environment.ProcessorCount)
{
    throw new ArgumentOutOfRangeException();
}

int bitMask = 1 << (userSelection - 1);
Process.GetCurrentProcess().ProcessorAffinity = (IntPtr)bitMask;

userSelection - は、選択されたプロセッサの数です。

複数のプロセッサーを選択したい場合は、

bitMask |= 1 << (anotherUserSelection - 1);

ユーザーの選択ごとに

于 2012-12-12T07:37:32.193 に答える