Ejemplo n.º 1
0
        /// <summary>
        ///     Disposes of the resources that have been acquired by the program.
        /// </summary>
        /// <param name="disposing">Determines whether managed object or managed and unmanaged resources should be disposed of.</param>
        public override void Dispose()
        {
            // Checks if the program has already been disposed of, if not, then the program is disposed of
            if (!IsDisposed)
            {
                ProgramsNativeApi.ReleaseProgram(Handle);
            }

            // Makes sure that the base class can execute its dispose logic
            base.Dispose();
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Disposes of the resources that have been acquired by the program.
        /// </summary>
        /// <param name="disposing">Determines whether managed object or managed and unmanaged resources should be disposed of.</param>
        protected override void Dispose(bool disposing)
        {
            // Checks if the program has already been disposed of, if not, then the program is disposed of
            if (!this.IsDisposed)
            {
                ProgramsNativeApi.ReleaseProgram(this.Handle);
            }

            // Makes sure that the base class can execute its dispose logic
            base.Dispose(disposing);
        }
Ejemplo n.º 3
0
        public void CleanupCLResources()
        {
            if (hasClInitialized)
            {
                FlushWorkingCache();

                foreach (var item in kernels)
                {
                    KernelsNativeApi.ReleaseKernel(item.Value);
                }
                kernels.Clear();

                ProgramsNativeApi.ReleaseProgram(clProgram);
                CommandQueuesNativeApi.ReleaseCommandQueue(commandQueue);
                ContextsNativeApi.ReleaseContext(clContext);

                hasClInitialized = false;
            }
        }