MCPcopy Create free account
hub / github.com/apache/arrow / garrow_tensor_is_column_major

Function garrow_tensor_is_column_major

c_glib/arrow-glib/tensor.cpp:430–435  ·  view source on GitHub ↗

* garrow_tensor_is_column_major: * @tensor: A #GArrowTensor. * * Returns: %TRUE if the tensor is column major a.k.a. Fortran order, * %FALSE otherwise. * * Since: 0.3.0 */

Source from the content-addressed store, hash-verified

428 * Since: 0.3.0
429 */
430gboolean
431garrow_tensor_is_column_major(GArrowTensor *tensor)
432{
433 auto arrow_tensor = garrow_tensor_get_raw(tensor);
434 return arrow_tensor->is_column_major();
435}
436
437G_END_DECLS
438

Callers

nothing calls this directly

Calls 2

garrow_tensor_get_rawFunction · 0.85
is_column_majorMethod · 0.80

Tested by

no test coverage detected