Exemplo n.º 1
0
 public static extern af_err af_identity(out IntPtr array_out, uint ndims, [In] long[] dim_dims, af_dtype type);
Exemplo n.º 2
0
 public static extern af_err af_get_size_of(out UIntPtr size_size, af_dtype type);
Exemplo n.º 3
0
 public static extern af_err af_range(out IntPtr array_out, uint ndims, [In] long[] dim_dims, int seq_dim, af_dtype type);
Exemplo n.º 4
0
 public static extern af_err af_iota(out IntPtr array_out, uint ndims, [In] long[] dim_dims, uint t_ndims, [In] long[] dim_tdims, af_dtype type);
Exemplo n.º 5
0
 public static extern af_err af_constant(out IntPtr array_arr, double val, uint ndims, [In] long[] dim_dims, af_dtype type);
Exemplo n.º 6
0
 public static extern af_err af_constant_complex(out IntPtr array_arr, double real, double imag, uint ndims, [In] long[] dim_dims, af_dtype type);
Exemplo n.º 7
0
 public static extern af_err af_get_type(out af_dtype type, IntPtr array_arr);
Exemplo n.º 8
0
 public static extern af_err af_create_array(out IntPtr array_arr, [In] uint[,,] data, uint ndims, [In] long[] dim_dims, af_dtype type);
Exemplo n.º 9
0
 public static extern af_err af_create_handle(out IntPtr array_arr, uint ndims, [In] long[] dim_dims, af_dtype type);
Exemplo n.º 10
0
 public static extern af_err af_cast(out IntPtr array_out, IntPtr array_in, af_dtype type);
Exemplo n.º 11
0
 public static extern af_err af_create_strided_array(out IntPtr array_arr, [In] uint[,,] data, long dim_offset, uint ndims, [In] long[] dim_dims, [In] long[] dim_strides, af_dtype ty, af_source location);
Exemplo n.º 12
0
 public static extern af_err af_random_normal(out IntPtr array_out, uint ndims, [In] long[] dim_dims, af_dtype type, IntPtr engine);
Exemplo n.º 13
0
 public static extern af_err af_device_array(out IntPtr array_arr, [In] byte[,,,] data, uint ndims, [In] long[] dim_dims, af_dtype type);