Skip to content

Commit b72475e

Browse files
committed
Rename NumSharp project to NumSharp.Core
and update the namespace.
1 parent 75283fd commit b72475e

File tree

111 files changed

+154
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+154
-129
lines changed

NumSharp.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.28010.2003
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumSharp", "src\NumSharp\NumSharp.csproj", "{816B0D1D-C0C5-4471-8E98-24A193158A3D}"
7-
EndProject
86
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumSharp.UnitTest", "test\NumSharp.UnitTest\NumSharp.UnitTest.csproj", "{3EDDE7AA-8037-4663-9DD4-FFB85FF962E5}"
97
EndProject
108
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumSharp.Benchmark", "test\NumSharp.Benchmark\NumSharp.Benchmark.csproj", "{2D475706-0F69-4C9B-83B9-03AB1AE38186}"
@@ -15,16 +13,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{E2079C90-B89
1513
EndProject
1614
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumSharp.Python", "src\NumSharp.Python\NumSharp.Python.csproj", "{381613F6-A794-4255-B50E-D2315F8A8CEC}"
1715
EndProject
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NumSharp.Core", "src\NumSharp.Core\NumSharp.Core.csproj", "{190A2514-31CD-4738-AF20-3492DD47DE8C}"
17+
EndProject
1818
Global
1919
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2020
Debug|Any CPU = Debug|Any CPU
2121
Release|Any CPU = Release|Any CPU
2222
EndGlobalSection
2323
GlobalSection(ProjectConfigurationPlatforms) = postSolution
24-
{816B0D1D-C0C5-4471-8E98-24A193158A3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25-
{816B0D1D-C0C5-4471-8E98-24A193158A3D}.Debug|Any CPU.Build.0 = Debug|Any CPU
26-
{816B0D1D-C0C5-4471-8E98-24A193158A3D}.Release|Any CPU.ActiveCfg = Release|Any CPU
27-
{816B0D1D-C0C5-4471-8E98-24A193158A3D}.Release|Any CPU.Build.0 = Release|Any CPU
2824
{3EDDE7AA-8037-4663-9DD4-FFB85FF962E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2925
{3EDDE7AA-8037-4663-9DD4-FFB85FF962E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
3026
{3EDDE7AA-8037-4663-9DD4-FFB85FF962E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -41,6 +37,10 @@ Global
4137
{381613F6-A794-4255-B50E-D2315F8A8CEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
4238
{381613F6-A794-4255-B50E-D2315F8A8CEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
4339
{381613F6-A794-4255-B50E-D2315F8A8CEC}.Release|Any CPU.Build.0 = Release|Any CPU
40+
{190A2514-31CD-4738-AF20-3492DD47DE8C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
41+
{190A2514-31CD-4738-AF20-3492DD47DE8C}.Debug|Any CPU.Build.0 = Debug|Any CPU
42+
{190A2514-31CD-4738-AF20-3492DD47DE8C}.Release|Any CPU.ActiveCfg = Release|Any CPU
43+
{190A2514-31CD-4738-AF20-3492DD47DE8C}.Release|Any CPU.Build.0 = Release|Any CPU
4444
EndGlobalSection
4545
GlobalSection(SolutionProperties) = preSolution
4646
HideSolutionNode = FALSE

src/NumSharp/Creation/NDArrayWithDType.arange.cs renamed to src/NumSharp.Core/Creation/NDArrayWithDType.arange.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Numerics;
66
using System.Text;
77

8-
namespace NumSharp
8+
namespace NumSharp.Core
99
{
1010
public partial class NDArrayWithDType
1111
{

src/NumSharp/Creation/NDArrayWithDType.reshape.cs renamed to src/NumSharp.Core/Creation/NDArrayWithDType.reshape.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Linq;
66

7-
namespace NumSharp
7+
namespace NumSharp.Core
88
{
99
public partial class NDArrayWithDType
1010
{

src/NumSharp/Creation/NdArray.ARange.cs renamed to src/NumSharp.Core/Creation/NdArray.ARange.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Numerics;
66
using System.Text;
77

8-
namespace NumSharp
8+
namespace NumSharp.Core
99
{
1010
public partial class NDArray<T>
1111
{

src/NumSharp/Creation/NdArray.LinSpace.cs renamed to src/NumSharp.Core/Creation/NdArray.LinSpace.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Numerics;
66
using System.Text;
77

8-
namespace NumSharp
8+
namespace NumSharp.Core
99
{
1010
public partial class NDArray<T>
1111
{

src/NumSharp/Creation/NdArray.ReShape.cs renamed to src/NumSharp.Core/Creation/NdArray.ReShape.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Linq;
66

7-
namespace NumSharp
7+
namespace NumSharp.Core
88
{
99
public partial class NDArray<T>
1010
{

src/NumSharp/Creation/NumPy.array.cs renamed to src/NumSharp.Core/Creation/NumPy.array.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Drawing;
77

8-
namespace NumSharp
8+
namespace NumSharp.Core
99
{
1010
public static partial class NumPyExtensions
1111
{

src/NumSharp/Creation/NumPy.asarray.cs renamed to src/NumSharp.Core/Creation/NumPy.asarray.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Drawing;
77

8-
namespace NumSharp
8+
namespace NumSharp.Core
99
{
1010
public static partial class NumPyExtensions
1111
{

src/NumSharp/Creation/NumPy.ones.cs renamed to src/NumSharp.Core/Creation/NumPy.ones.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Numerics;
77

8-
namespace NumSharp.Extensions
8+
namespace NumSharp.Core.Extensions
99
{
1010
public static partial class NumPyExtensions
1111
{

src/NumSharp/Creation/NumPy.ones_like.cs renamed to src/NumSharp.Core/Creation/NumPy.ones_like.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using NumSharp.Extensions;
1+
using NumSharp.Core.Extensions;
22
using System;
33
using System.Collections.Generic;
44
using System.Text;
55

6-
namespace NumSharp
6+
namespace NumSharp.Core
77
{
88
public static partial class NumPyExtensions
99
{

0 commit comments

Comments
 (0)