Skip to content

Commit 823db18

Browse files
Fix compile bug
1 parent d465654 commit 823db18

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/Amplifier.Net/Amplifier.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<PropertyGroup>
44
<AssemblyName>Amplifier</AssemblyName>
55
<RootNamespace>Amplifier</RootNamespace>
6-
<Version>0.4.2</Version>
6+
<Version>0.4.4</Version>
77
<Authors>Deepak Battini</Authors>
88
<Company>Tech Quantum</Company>
99
<Description>Amplifier allows .NET developers to easily run complex applications with intensive mathematical computation on Intel CPU/GPU, NVIDIA, AMD without writing any additional C kernel code. Write your function in .NET and Amplifier will take care of running it on your favorite hardware.</Description>
10-
<PackageLicenseFile>README.md</PackageLicenseFile>
10+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1111
<PackageProjectUrl>https://github.com/tech-quantum/Amplifier.NET</PackageProjectUrl>
1212
<RepositoryUrl>https://github.com/tech-quantum/Amplifier.NET</RepositoryUrl>
1313
<RepositoryType>git</RepositoryType>
@@ -37,7 +37,7 @@
3737
<None Update="Amplifier.dll.config">
3838
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3939
</None>
40-
<None Include="..\README.md">
40+
<None Include="..\..\LICENSE">
4141
<Pack>True</Pack>
4242
<PackagePath></PackagePath>
4343
</None>

src/Amplifier.Net/OpenCLCompiler.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ CSharpDecompiler cSharpDecompiler
248248
.Replace("using System;", "")
249249
.Replace("[OpenCLKernel]", "__kernel")
250250
.Replace("public", "")
251+
.Replace("this.", "")
251252
.Replace("[Global]", "global")
252253
.Replace("[]", "*")
253254
.Replace("@", "v_");

0 commit comments

Comments
 (0)