Go to main content

man pages section 3: DAX Library Functions

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

dax_xor (3DAX)

Name

dax_xor - compute logical XOR of two vectors

Synopsis

cc [ flag... ] file... -ldax [ library...]

#include <dax.h>

dax_result_t
dax_xor(dax_context_t *ctx, uint64_t flags,
    dax_vec_t *src1, dax_vec_t *src2, dax_vec_t *dst);

Description

This function is similar to the dax_and() function, but performs logical XOR.

Supported Flags

All dax_and() flags.

Return Values

Same as dax_and().

Attributes

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
Availability
system/library
Interface Stability
Committed

See Also

dax_and(3DAX)

Notes

In libdax version 1, this function is available in software, but may be implemented on DAX hardware in a future version of the library.

In libdax version 1, the DAX_CACHE_DST flag is silently ignored.