diff --git a/NOpenCL/BinaryType.cs b/NOpenCL/BinaryType.cs index 8c27926..afe6374 100644 --- a/NOpenCL/BinaryType.cs +++ b/NOpenCL/BinaryType.cs @@ -37,7 +37,7 @@ public enum BinaryType /// /// An executable binary is associated with the device. This is the case if a /// program was created by without the –createlibrary - /// link option or the program was created by + /// link option or the program was created by /// or an executable binary is loaded using . /// Executable = 0x0004, diff --git a/NOpenCL/BuildStatus.cs b/NOpenCL/BuildStatus.cs index 84c0628..4047d73 100644 --- a/NOpenCL/BuildStatus.cs +++ b/NOpenCL/BuildStatus.cs @@ -8,7 +8,7 @@ namespace NOpenCL /// Returns the build, compile, or link status, whichever was performed last /// on the specified program and device. /// - /// + /// /// /// public enum BuildStatus diff --git a/NOpenCL/Device.cs b/NOpenCL/Device.cs index da6cb33..4116f3a 100644 --- a/NOpenCL/Device.cs +++ b/NOpenCL/Device.cs @@ -478,7 +478,8 @@ public uint MaxSamplers /// /// Maximum number of work-items in a work-group executing a kernel on a single /// compute unit, using the data parallel execution model. - /// (Refer to ). The minimum value is 1. + /// (Refer to ). + /// The minimum value is 1. /// public UIntPtr MaxWorkGroupSize { @@ -490,7 +491,8 @@ public UIntPtr MaxWorkGroupSize /// /// Maximum dimensions that specify the global and local work-item IDs used by - /// the data parallel execution model. (Refer to ). The + /// the data parallel execution model. (Refer to + /// ). The /// minimum value is 3 for devices that are not of type . /// public uint MaxWorkItemDimensions @@ -503,7 +505,7 @@ public uint MaxWorkItemDimensions /// /// Maximum number of work-items that can be specified in each dimension of - /// the work-group to . + /// the work-group to . /// /// Returns n entries, where n is the /// value returned by the query for . diff --git a/NOpenCL/Platform.cs b/NOpenCL/Platform.cs index a814aac..bb48750 100644 --- a/NOpenCL/Platform.cs +++ b/NOpenCL/Platform.cs @@ -87,9 +87,9 @@ public Device[] GetDevices(DeviceType deviceType) /// /// This is a hint from the application and does not guarantee that the compiler will not be used /// in the future or that the compiler will actually be unloaded by the implementation. Calls to - /// , , or - /// after will reload the compiler, if necessary, to build the - /// appropriate program executable. + /// , , or + /// after will reload the compiler, if necessary, + /// to build the appropriate program executable. /// public void UnloadCompiler() #pragma warning restore CS1574 // XML comment has cref attribute that could not be resolved