tensor_data_interface.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2019-2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  4. *
  5. * StarPU is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation; either version 2.1 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * StarPU is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. */
  16. // This program checks that the implementation of the tensor data
  17. // interface only uses StarPU's public API
  18. #define starpu_interface_tensor_ops my_starpu_interface_tensor_ops
  19. #define starpu_tensor_data_register my_starpu_tensor_data_register
  20. #define starpu_tensor_ptr_register my_starpu_tensor_data_ptr_register
  21. #define starpu_tensor_get_nx my_starpu_tensor_get_nx
  22. #define starpu_tensor_get_ny my_starpu_tensor_get_ny
  23. #define starpu_tensor_get_nz my_starpu_tensor_get_nz
  24. #define starpu_tensor_get_nt my_starpu_tensor_get_nt
  25. #define starpu_tensor_get_local_ldy my_starpu_tensor_get_local_ldy
  26. #define starpu_tensor_get_local_ldz my_starpu_tensor_get_local_ldz
  27. #define starpu_tensor_get_local_ldt my_starpu_tensor_get_local_ldt
  28. #define starpu_tensor_get_local_ptr my_starpu_tensor_get_local_ptr
  29. #define starpu_tensor_get_elemsize my_starpu_tensor_get_elemsize
  30. #include "../../src/datawizard/interfaces/tensor_interface.c"
  31. int main()
  32. {
  33. return 0;
  34. }