gpt4 book ai didi

numpy - xtensor 相当于 numpy a[a>3] = 1

转载 作者:行者123 更新时间:2023-12-04 07:19:11 25 4
gpt4 key购买 nike

标题说明了 - numpy 的 xtensor 等价物是什么

# set all elements > 3 to 1
sometensor[sometensor > 3] = 1
?
它看起来像 xt::filter作品:
xt::filter(sometensor, sometensor > 3) = 1
但看起来 numpy 版本要快得多。我已经用 xsimd 构建了 xtensor,但在这种情况下它似乎没有帮助。有没有更好,更简单的方法来做到这一点?
编辑
我找到了 filtration ,这确实更快(大约 3 倍),但仍然比 numpy 慢(大约 10 倍)......
解决方案(感谢汤姆!)
a = xt::where(a > 0.5, 1.0, a);
是最快的 - 比 filtration 快约 10 倍,所以它看起来像 simd-d!

最佳答案

xt::filter似乎是一个 View ,它(目前)在 xtensor 中效率不高。我会用 xt::where .不过,这可能会导致暂时的情况,而在 NumPy 中可能并非如此。由于我不知道临时的详细信息,让我们至少做一些时间:
1. NumPy 索引:

import numpy as np 
from datetime import datetime

a = np.random.random([1000000])
start = datetime.now()
a[a > 0.5] = 1.0
stop = datetime.now()
print((stop - start).microseconds)
在我的系统上大约 5000 微秒。
2. NumPy 在哪里
import numpy as np 
from datetime import datetime

a = np.random.random([1000000])
start = datetime.now()
a = np.where(a > 0.5, 1.0, a)
stop = datetime.now()
print((stop - start).microseconds)
在我的系统上大约 2500 微秒。
3.xtensor在哪里
#include <iostream>
#include <chrono>
#include <xtensor.hpp>

using namespace std;

int main()
{
xt::xtensor<double, 1> a = xt::random::rand<double>({1000000});

auto start = std::chrono::high_resolution_clock::now();
a = xt::where(a > 0.5, 1.0, a);
auto stop = std::chrono::high_resolution_clock::now();
auto duration = duration_cast<std::chrono::microseconds>(stop - start);
cout << duration.count() << endl;
}
在我的系统上,使用 xsimd 的时间在 2500 到 5000 微秒之间(比 NumPy 的分布要多得多),而没有 xsimd 的时间大约是其两倍。
4. xtensor 过滤器
#include <iostream>
#include <chrono>
#include <xtensor.hpp>

using namespace std;

int main()
{
xt::xtensor<double, 1> a = xt::random::rand<double>({1000000});

auto start = std::chrono::high_resolution_clock::now();
xt::filter(a, a > 0.5) = 1.0;
auto stop = std::chrono::high_resolution_clock::now();
auto duration = duration_cast<std::chrono::microseconds>(stop - start);
cout << duration.count() << endl;
}
在我的系统上,使用和不使用 xsimd 大约有 30000 微秒。
汇编
我用
cmake_minimum_required(VERSION 3.1)

project(Run)

set(CMAKE_BUILD_TYPE Release)

find_package(xtensor REQUIRED)
find_package(xsimd REQUIRED)
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} xtensor xtensor::optimize xtensor::use_xsimd)
没有 xsimd 我省略了最后一行。
罗塞塔/本地人
我正在运行 Mac 的 M1。列出的时间在 Rosetta 上(即 x86)。对于 native 构建,时间为:
  • 4500 微秒。
  • 1500 微秒。
  • 有和没有 xsimd 的 2000 微秒(我认为 xsimd 根本还不能在该芯片上工作!)。
  • 15000 微秒。
  • 关于numpy - xtensor 相当于 numpy a[a>3] = 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68614578/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com