svn commit: r504793 - in head/math/clblas: . files

Jan Beich jbeich at FreeBSD.org
Fri Jun 21 12:42:03 UTC 2019


Mark Linimon <linimon at FreeBSD.org> writes:

> Author: linimon
> Date: Fri Jun 21 12:18:11 2019
> New Revision: 504793
> URL: https://svnweb.freebsd.org/changeset/ports/504793
>
> Log:
>   Attempt to fix build on GCC-based systems by removing stray ";" characters.
>   This fix should go upstream.
[...]
> +@@ -534,7 +534,7 @@ clblasGemm(
> +   if (needRowKernel)    makeGemmKernel(   rowClKernel, commandQueues[0],    rowKernelSource, sourceBuildOptions,    &rowKernelBinary,    rowKernelBinarySize, binaryBuildOptions);
> +   if (needColKernel)    makeGemmKernel(   colClKernel, commandQueues[0],    colKernelSource, sourceBuildOptions,    &colKernelBinary,    colKernelBinarySize, binaryBuildOptions);
> +   if (needCornerKernel) makeGemmKernel(cornerClKernel, commandQueues[0], cornerKernelSource, sourceBuildOptions, &cornerKernelBinary, cornerKernelBinarySize, binaryBuildOptions);
> +-  const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols };
> ++  const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols };;

Why did you add extra ";" (semicolon) here?


More information about the svn-ports-all mailing list