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

Function garrow_tensor_is_row_major

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

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

Source from the content-addressed store, hash-verified

412 * Since: 0.3.0
413 */
414gboolean
415garrow_tensor_is_row_major(GArrowTensor *tensor)
416{
417 auto arrow_tensor = garrow_tensor_get_raw(tensor);
418 return arrow_tensor->is_row_major();
419}
420
421/**
422 * garrow_tensor_is_column_major:

Callers

nothing calls this directly

Calls 2

garrow_tensor_get_rawFunction · 0.85
is_row_majorMethod · 0.80

Tested by

no test coverage detected