gpt4 book ai didi

c - 用 Bit Packing 优化 C 中的矩阵乘法

转载 作者:太空宇宙 更新时间:2023-11-04 02:23:01 25 4
gpt4 key购买 nike

我目前正在尝试编写一种算法,用于使用位打包优化 GF(2) 上的矩阵乘法。矩阵 AB 都是按列优先顺序提供的,所以我首先将 A 复制到行优先顺序,然后将值打包成 8位整数并使用奇偶校验来加速操作。我需要能够测试高达 2048x2048 的方阵,但是,我当前的实现提供了高达 24x24 的正确答案,然后无法计算出正确的结果。任何帮助,将不胜感激。

//Method which packs an array of integers into 8 bits
uint8_t pack(int *toPack) {
int i;
uint8_t A;
A = 0;
for (i = 0; i < 8; i++) {
A = (A << 1) | (uint8_t)toPack[i];
}
return A;
}

//Method for doing matrix multiplication over GF(2)
void matmul_optimized(int n, int *A, int *B, int *C) {
int i, j, k;
//Copying values of A into a row major order matrix.
int *A_COPY = malloc(n * n * sizeof(int));
int copy_index = 0;
for (i = 0; i < n; i++) {
for (j = 0; j < n; j++) {
A_COPY[copy_index] = A[i + j * n];
copy_index++;
}
}
//Size of the data data type integers will be packed into
const int portion_size = 8;
int portions = n / portion_size;

//Pointer space reserved to store packed integers in row major order
uint8_t *compressedA = malloc(n * portions * sizeof(uint8_t));
uint8_t *compressedB = malloc(n * portions * sizeof(uint8_t));

int a[portion_size];
int b[portion_size];
for (i = 0; i < n; i++) {
for (j = 0; j < portions; j++) {
for (k = 0; k < portion_size; k++) {
a[k] = A_COPY[i * n + j * portion_size + k];
b[k] = B[i * n + j * portion_size + k];
}
compressedA[i * n + j] = pack(a);
compressedB[i * n + j] = pack(b);
}
}

//Calculating final matrix using parity checking and XOR on A and B
int cij;
for (i = 0; i < n; ++i) {
for (j = 0; j < n; ++j) {
int cIndex = i + j * n;
cij = C[cIndex];
for (k = 0; k < portions; ++k) {
uint8_t temp = compressedA[k + i * n] & compressedB[k + j * n];
temp ^= temp >> 4;
temp ^= temp >> 2;
temp ^= temp >> 1;
uint8_t parity = temp & (uint8_t)1;
cij = cij ^ parity;
}
C[cIndex] = cij;
}
}
free(compressedA);
free(compressedB);
free(A_COPY);
}

最佳答案

我有两点意见:

  • 您应该将 cij 初始化为 0 而不是 cij = C[cIndex];。更新目标矩阵而不是存储 A * B 的结果似乎是不正确的。您的代码可能巧合地适用于小矩阵,因为目标矩阵 C 恰好是这个大小的全零。

  • 将分配大小计算为 malloc(n * n * sizeof(int)); 是有风险的,因为 n * n 可能会溢出 int n 如果 int 小于 size_t。考虑到您使用的大小,这可能不是问题,但始终使用 sizeof 作为第一个操作数以强制转换为 size_t 是个好主意以下几个:

    int *A_COPY = malloc(sizeof(*A_COPY) * n * n);

关于c - 用 Bit Packing 优化 C 中的矩阵乘法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55189832/

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