CoreNEURON
nrn_acc_manager.hpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2022 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================
7 */
8 #pragma once
9 
10 namespace coreneuron {
11 struct Memb_list;
12 struct NrnThread;
13 struct NetSendBuffer_t;
14 void setup_nrnthreads_on_device(NrnThread* threads, int nthreads);
15 void delete_nrnthreads_on_device(NrnThread* threads, int nthreads);
16 void update_nrnthreads_on_host(NrnThread* threads, int nthreads);
17 
18 void update_net_receive_buffer(NrnThread* _nt);
19 
20 // Called by NModl
21 void realloc_net_receive_buffer(NrnThread* nt, Memb_list* ml);
22 void update_net_send_buffer_on_host(NrnThread* nt, NetSendBuffer_t* nsb);
23 
24 void update_weights_from_gpu(NrnThread* threads, int nthreads);
25 void init_gpu();
26 } // namespace coreneuron
coreneuron::setup_nrnthreads_on_device
void setup_nrnthreads_on_device(NrnThread *threads, int nthreads)
Definition: nrn_acc_manager.cpp:466
coreneuron::delete_nrnthreads_on_device
void delete_nrnthreads_on_device(NrnThread *threads, int nthreads)
Cleanup device memory that is being tracked by the OpenACC runtime.
Definition: nrn_acc_manager.cpp:1151
coreneuron::update_nrnthreads_on_host
void update_nrnthreads_on_host(NrnThread *threads, int nthreads)
Definition: nrn_acc_manager.cpp:1012
coreneuron::init_gpu
void init_gpu()
coreneuron::update_weights_from_gpu
void update_weights_from_gpu(NrnThread *threads, int nthreads)
Copy weights from GPU to CPU.
Definition: nrn_acc_manager.cpp:1112
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::update_net_send_buffer_on_host
void update_net_send_buffer_on_host(NrnThread *nt, NetSendBuffer_t *nsb)
Definition: nrn_acc_manager.cpp:974
coreneuron::realloc_net_receive_buffer
void realloc_net_receive_buffer(NrnThread *nt, Memb_list *ml)
Definition: nrn_acc_manager.cpp:811
coreneuron::update_net_receive_buffer
void update_net_receive_buffer(NrnThread *nt)
Definition: nrn_acc_manager.cpp:928