コード例 #1
0
ファイル: Program.cs プロジェクト: uhrm/opencl-sharp
        public static Program CreateProgramWithIL(Context context, byte[] binary)
        {
            ErrorCode error;
            IntPtr    length = (IntPtr)binary.Length;
            var       handle = NativeMethods.clCreateProgramWithIL(context.handle, binary, length, out error);

            if (error != ErrorCode.Success)
            {
                throw new OpenClException(error);
            }
            return(new Program(handle));
        }