matrix-multiplication
Sparse matrix-vector multiplication in CUDA
I\'m trying to implement a matrix-vector Multiplication on GPU (using CUDA). In my C++ code (CPU), I load the matrix as a dense matrix, and then I perform the matrix-vector multiplication using CUDA.[详细]
2023-03-05 09:50 分类:问答OpenGL 2D rotation problem
In the following program i am trying to draw a simple house. The coordinates are defined in the house array. I need to rotate the house and display both rotated as well as the original house.[详细]
2023-03-05 07:14 分类:问答Problem with boost ublas matrix product
I\'m trying to use the ublas part of Boost but I\'m not able to multiply matrices and assign the result to other matrices for some reason.[详细]
2023-03-02 19:46 分类:问答Questions About Threads
I am new to thread programing and I have a conceptual problem.I am doing matrix multiplication as a project for my class.However, I do it without using threads, and then using threads to compute the s[详细]
2023-03-01 17:52 分类:问答Problem with MPI matrix-matrix multiply: Cluster slower than single computer
I code a small program using MPI to parallelize matrix-matrix multiplication. The problem is: When running the program on my computer, it takes about 10 seconds to complete, but about 75 seconds on a[详细]
2023-02-26 03:16 分类:问答Multiplying two 3x3 matrices in C
I am trying to multiply two 3x3 matrices. The first 2 numbers in the first and second row are the only correct answer. What am I doing[详细]
2023-02-25 03:39 分类:问答CUBLAS matrix multiplication
After implementing matrix multiplication with CUDA. I tried to implement it with CUBLAS(thanks to the advice of some people here in the forum).[详细]
2023-02-22 08:00 分类:问答How to accelerate/avoid multiplication for large matrices in Matlab?
The setting is here. X: 6000x8000 non-sparse matrix B: 8000x1 sparse vect开发者_如何学运维or with only tens of non-zeros[详细]
2023-02-20 05:21 分类:问答Non Square Matrix Multiplication in CUDA
The code I use for matrix multiplications in CUDA lets me multiply both square and non square matrices, how开发者_运维问答ever, both Width and Height MUST be multiples of blocksize.[详细]
2023-02-20 02:29 分类:问答Error in linsolve
A=imread(\'lena_color.jpg\'); x1=2.1; b=A*x1; b=double(b); x1=double(x1); opts.UT = true; opts.TRANSA = false;[详细]
2023-02-17 04:24 分类:问答