了解空间局部性和时间局部性

发布于 2025-01-16 14:15:01 字数 390 浏览 0 评论 0原文

在本练习中,我们将研究矩阵计算的内存局部性属性。以下代码是用 C 语言编写的,其中同一行中的元素是连续存储的。假设每个字是一个 32 位整数。

int i,j,temp;
for (i=0; i<length; i++)
{
    for ( j = 0; j < length - i - 1; j++)
    {
        if (a[ j + 1 ] < a[j])
        {
            temp = a[j];
            a[j] = a [j + 1];
            a[j+1] = temp;
        }
    }
}

引用哪些变量表现出时间局部性 引用哪些变量表现出空间局部性?

In this exercise, we look at memory locality properties of matrix computation. The following code is written in C, where elements within the same row are stored contiguously. Assume each word is a 32-bit integer.

int i,j,temp;
for (i=0; i<length; i++)
{
    for ( j = 0; j < length - i - 1; j++)
    {
        if (a[ j + 1 ] < a[j])
        {
            temp = a[j];
            a[j] = a [j + 1];
            a[j+1] = temp;
        }
    }
}

}

References to which variables exhibit temporal locality?
References to which variables exhibit spatial locality?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文