Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 74bd58d

Browse files
vxfieldtcNickolasswernlikuzminrobin
authored
Use latest Azure Quantum .NET SDK in 2201 release (#908)
* Update .NET Azure Quantum SDK version * Temporarily adjusting broken links * Update xfield/update-net-sdk (#907) * Fix capitalization in xref links (#902) xref links in https://docs.microsoft.com/en-us/qsharp/api/qsharp/microsoft.quantum.diagnostics.assertqubitwithintolerance and https://docs.microsoft.com/en-us/qsharp/api/qsharp/microsoft.quantum.diagnostics.assertqubit don't render as links. I believe docgen doesn't recognize API links if they are given in lowercase, it needs proper capitalization in xref. Co-authored-by: XField <[email protected]> * Update macOS build scripts for libomp dependency (#906) * Link against checked in libomp.dylib * Try another explicit link strategy * Show contents of osx folder * Try another linker strategy * go back to old linker pattern * try other syntax * Try checked in openmp headers * try getting more info from otool * Try adapting libomp rpath on mac * Ensure libomp lands in drops folder * Additional copy of libomp * Add explanatory comments * Use @loader_path instead of @executable_path Co-authored-by: Mariia Mykhailova <[email protected]> Co-authored-by: Stefan J. Wernli <[email protected]> * Added `libomp` instructions. (#901) Co-authored-by: Mariia Mykhailova <[email protected]> Co-authored-by: Stefan J. Wernli <[email protected]> Co-authored-by: Robin Kuzmin <[email protected]>
1 parent d6ec661 commit 74bd58d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To build on other platforms:
5858
* Install [CMake](https://cmake.org/install/)
5959
* Install [.NET Core 3 SDK](https://dotnet.microsoft.com/download)
6060
* On [WSL](https://docs.microsoft.com/en-us/windows/wsl/)/Linux:
61-
* Install `g++` (e.g. in Ubuntu 20.04 `sudo apt-get install g++`).
61+
* Install [`libomp`](https://openmp.llvm.org) needed for the native (C++) full-state simulator.
6262
* The build does not accept `dotnet-*-5.0` packages, install `dotnet-*-3.1`
6363
(`sudo apt-get install dotnet-sdk-3.1`). The possible result can be:
6464

src/Azure/Azure.Quantum.Client/Microsoft.Azure.Quantum.Client.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Azure.Core" Version="1.19.0" />
24-
<PackageReference Include="Azure.Identity" Version="1.4.0" />
25-
<PackageReference Include="Azure.Quantum.Jobs" Version="1.0.0-beta.2" />
23+
<PackageReference Include="Azure.Core" Version="1.22.0" />
24+
<PackageReference Include="Azure.Identity" Version="1.5.0" />
25+
<PackageReference Include="Azure.Quantum.Jobs" Version="1.0.0-beta.3" />
2626
<PackageReference Include="Azure.Storage.Blobs" Version="12.10.0" />
27-
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
27+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
2828
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
2929
<PrivateAssets>all</PrivateAssets>
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)