是否有 iOS 加速方法来实现元素最大 (np.maximum)?

Is there an iOS accelerate methods for doing elementwise maximum (np.maximum)?

我正在研究使用 iOS Accelerate 在移动设备上执行一些快速数学运算。我需要相当于 numpy 中的 np.maximum。这是 2 个 ndarray 之间的元素明智最大值。

我一直在搜索与 Apple Accelerate Framework 相关的文档,但我在其中找不到任何可以直接执行此操作的内容。

注意:下面的问题已正确回答并经过测试:

令 a:[浮动] = [2、4、3、8、1、10]

令 b: [浮动] = [1, 5, 2, 1, 9, 1]

var c: [浮点数] = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0]

vDSP_vmax(a, 1, b, 1, &c, 1, 6)

c

在 Xcode 操场上。

检查vDSP_vmaxD()。这就是你想要的。