Unable to load DLL 'Microsoft.Quantum.Simulator.Runtime.dll'

后端 未结 3 600
攒了一身酷
攒了一身酷 2021-01-27 07:55

Getting Unable to load DLL \'Microsoft.Quantum.Simulator.Runtime.dll\' error while trying to validate my Q# environment by running the teleport sample program.

3条回答
  •  渐次进展
    2021-01-27 09:00

    copy the Microsoft.Quantum.Simulator.Runtime.dll from C:\Users\{user}\.nuget\packages\microsoft.quantum.development.kit\0.2.1802.2202-preview\runtimes\win10-x64 to C:\Users\{user}\.nuget\packages\microsoft.quantum.development.kit\0.2.1802.2202-preview\lib\netstandard2.0. Although I have not tested this with the older Microsoft Quantum Development Kit version, there seems to be problem with the 0.2.1802.2202 version. Make sure to check if AVX is avaialble, you can use CPU-Z tool to check that in instructions section.

    then run dotnet run which should result in the

    Round 0:        Sent False,     got False.
    Teleportation successful!!
    
    Round 1:        Sent True,      got True.
    Teleportation successful!!
    
    Round 2:        Sent False,     got False.
    Teleportation successful!!
    
    Round 3:        Sent False,     got False.
    Teleportation successful!!
    
    Round 4:        Sent False,     got False.
    Teleportation successful!!
    
    Round 5:        Sent False,     got False.
    Teleportation successful!!
    
    Round 6:        Sent False,     got False.
    Teleportation successful!!
    
    Round 7:        Sent True,      got True.
    Teleportation successful!!
    
    
    
    Press Enter to continue...
    

提交回复
热议问题