PLASMA  2.4.5
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
allocate.h
Go to the documentation of this file.
1 
14 #ifndef _PLASMA_ALLOCATE_H_
15 #define _PLASMA_ALLOCATE_H_
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 void *plasma_shared_alloc(plasma_context_t *plasma, size_t size, int type);
23 void *plasma_private_alloc(plasma_context_t *plasma, size_t size, int type);
25 
26 #ifdef __cplusplus
27 }
28 #endif
29 
30 #endif