Hey Kent,
Could you please do this
/*
* @@name: allocators.1c
* @@type: C
* @@compilable: yes, omp_5.0
* @@linkable: yes
* @@expect: success
*/
#include <omp.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#define N 1000
int main()
{
float *x, *y;
float s=2.0;
omp_memspace_handle_t xy_memspace = omp_default_mem_space;
omp_alloctrait_t xy_traits[1]={omp_atk_alignment, 64};
omp_allocator_handle_t xy_alloc = omp_init_allocator(xy_memspace,1,xy_traits);
Hey Kent,
Could you please do this