cross - Cross product.
Contents
Copyright
Copyright © 2007-2011 The Khronos Group Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or
associated documentation files (the "Materials"), to deal in the Materials without restriction, including
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Materials, and to permit persons to whom the Materials are furnished to do so, subject to
the condition that this copyright notice and permission notice shall be included in all copies or
substantial portions of the Materials.
Description
Returns the cross product of p0.xyz and p1.xyz. The w component of the float4 result (or double if the
cl_khr_fp16(3clc) extension is enabled) will be 0.0.
Name
cross - Cross product.
float4cross(float4p0,float4p1);float3cross(float3p0,float3p1);double4cross(double4p0,double4p1);double3cross(double3p0,double3p1);half4cross (half4p0, half4p1) // if half extension
enabled
half3cross (half3p0, half3p1) // if half extension
enabled
Notes
1. OpenCL Specification
page 262, section 6.12.5 - Geometric Functions
The Khronos Group 11/18/2024 CROSS(3clc)
See Also
geometricFunctions(3clc)
Specification
OpenCLSpecification[1]
