Add copyright notice to source files

Signed-off-by: Trivernis <trivernis@protonmail.com>
main
Trivernis 3 years ago
parent 06eac575c5
commit 0bfba7cab9

@ -0,0 +1,6 @@
<component name="CopyrightManager">
<copyright>
<option name="notice" value="opencl stream executor&#10;Copyright (C) &amp;#36;today.year trivernis&#10;See LICENSE for more information" />
<option name="myName" value="default" />
</copyright>
</component>

@ -0,0 +1,7 @@
<component name="CopyrightManager">
<settings default="default">
<module2copyright>
<element module="Project Source Files" copyright="default" />
</module2copyright>
</settings>
</component>

@ -1,3 +1,9 @@
/*
* opencl stream executor
* Copyright (C) 2021 trivernis
* See LICENSE for more information
*/
use crate::executor::ocl_stream::OCLStreamSender;
use ocl::ProQue;

@ -1,3 +1,9 @@
/*
* opencl stream executor
* Copyright (C) 2021 trivernis
* See LICENSE for more information
*/
use crate::executor::context::ExecutorContext;
use crate::executor::ocl_stream::{OCLStream, OCLStreamSender};
use crate::utils::result::OCLStreamResult;

@ -1,3 +1,9 @@
/*
* opencl stream executor
* Copyright (C) 2021 trivernis
* See LICENSE for more information
*/
use crossbeam_channel::{Receiver, Sender};
use crate::utils::result::{OCLStreamError, OCLStreamResult};

@ -1,3 +1,9 @@
/*
* opencl stream executor
* Copyright (C) 2021 trivernis
* See LICENSE for more information
*/
pub mod executor;
pub mod utils;

@ -1 +1,7 @@
pub mod result;
/*
* opencl stream executor
* Copyright (C) 2021 trivernis
* See LICENSE for more information
*/
pub mod result;

@ -1,3 +1,9 @@
/*
* opencl stream executor
* Copyright (C) 2021 trivernis
* See LICENSE for more information
*/
use crossbeam_channel::RecvError;
use std::error::Error;
use std::fmt::{self, Display, Formatter};

Loading…
Cancel
Save