mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00

This edits the headers in every file so the copyright notice mentions RWTH Aachen University. We also update some copyright years and fix various comments so the header is the same across all of VILLASframework. * Harmonize comment and code-style Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com> * Harmonize comment and code-style Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com> --------- Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
23 lines
538 B
C++
23 lines
538 B
C++
/* GPU Kernels.
|
|
*
|
|
* Author: Daniel Krebs <github@daniel-krebs.net>
|
|
* SPDX-FileCopyrightText: 2017 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <cuda_runtime.h>
|
|
|
|
namespace villas {
|
|
namespace gpu {
|
|
|
|
__global__ void
|
|
kernel_mailbox(volatile uint32_t *mailbox, volatile uint32_t* counter);
|
|
|
|
__global__ void
|
|
kernel_memcpy(volatile uint8_t* dst, volatile uint8_t* src, size_t length);
|
|
|
|
} // namespace villas
|
|
} // namespace gpu
|