The dot-product tag has no wiki summary.
6
votes
4answers
288 views
Generalized sliding-window computation on the GPU
Here's some Python code that implements a sliding-window computation on two 3D matrices, X and Y.
import numpy
def sliding_dot( X,Y ) :
assert X.ndim == Y.ndim == 3
iw,ih,id = X.shape
...
6
votes
4answers
500 views
Speeding up numpy.dot
I've got a numpy script that spends about 50% of its runtime in the following code:
s = numpy.dot(v1, v1)
where
v1 = v[1:]
and v is a 4000-element 1D ndarray of float64 stored in contiguous memory ...
6
votes
3answers
883 views
Most efficient way to store 4 dot products into a contiguous array in C using SSE intrinsics
I am optimizing some code for an Intel x86 Nehalem micro-architecture using SSE intrinsics.
A portion of my program computes 4 dot products and adds each result to the previous values in a contiguous ...
4
votes
2answers
50 views
3D space: following the direction that an object is pointing towards, using the mouse pointer
Given the 3D vector of the direction that the camera is facing and the orientation/direction vector of a 3D object in the 3D space, how can I calculate the 2-dimensional slope that the mouse pointer ...
4
votes
2answers
303 views
numpy: column-wise dot product
Given a 2D numpy array, I need to compute the dot product of every column with itself, and store the result in a 1D array. The following works:
In [45]: A = np.array([[1,2,3,4],[5,6,7,8]])
In [46]: ...
4
votes
2answers
87 views
What is the pythonic way to calculate dot product?
I have two lists, one is named as A, another is named as B. Each element in A is a triple, and each element in B is just an number. I would like to calculate the result defined as :
result = A[0][0] ...
2
votes
2answers
86 views
Numpy: Reduce memory footprint of dot product with random data
I have a large numpy array that I am going to take a linear projection of using randomly generated values.
>>> input_array.shape
(50, 200000)
>>> random_array = ...
2
votes
2answers
232 views
How do I use Redis in Ruby on Rails to take the dot product of two hashes efficiently
I have a data structure like this in the database in the features table called token_vector (a hash):
Feature.find(1).token_vector = { "a" => 0.1, "b" => 0.2, "c" => 0.3 }
There are 25 of ...
2
votes
3answers
373 views
dot product of complex vectors with openMP
I'm using a version of openMP which does not support reduce() for complex argument. I need a fast dot-product function like
std::complex< double > dot_prod( std::complex< double > ...
1
vote
1answer
121 views
Matrix components and dot product
I have the following GLSL code:
uniform mat3x3 rgb2xyz = mat3x3(
vec3(DEFAULT_RGB2XYZ_XR, DEFAULT_RGB2XYZ_XG, DEFAULT_RGB2XYZ_XB),
vec3(DEFAULT_RGB2XYZ_YR, DEFAULT_RGB2XYZ_YG, ...
1
vote
2answers
2k views
Cosine Similarity
Thank you all great guys here for helping people like me :)
I just need small hint ....
I calculated tf/idf values of two documents. Following is the tf/idf values
1.txt
0.0
0.5
2.txt
0.0
0.5
The ...
1
vote
1answer
1k views
Dot product in C++ using generic algorithms
I´m sure there´s a clever one-liner using the C++ stl generic algorithms for implementing the dot product of the elements in any ordered container, such as a vector or list. I just don´t seem to ...
0
votes
2answers
98 views
Memory Error when numpy.dot(A,B), where A is 250000x108 float matrix, B is transpose of A
Any idea of do A dot B, without Memroy Error?
0
votes
3answers
367 views
Dot product of every element with every other element of an array
Is there an easy way to take the dot product of one element of an array with every other?
So given:
array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
I would like to get the result:
array([ ...