mirror of
https://github.com/marian-nmt/marian.git
synced 2024-11-03 20:13:47 +03:00
can call gSoftmax
This commit is contained in:
parent
b6e4b8f3f3
commit
78444bc2eb
@ -46,9 +46,9 @@ void temp()
|
||||
std::vector<float> hVec({1,2, 4,3, 7,9, 7,3});
|
||||
thrust::device_vector<float> dVec(8);
|
||||
thrust::copy(hVec.begin(), hVec.end(), dVec.begin());
|
||||
float *data = hVec.data();
|
||||
float *data = thrust::raw_pointer_cast(dVec.data());
|
||||
|
||||
gSoftMax<<<2, 4>>>(data, 2, 4);
|
||||
gSoftMax<<<4, 2, sizeof(float)>>>(data, 4, 2);
|
||||
|
||||
std::vector<float> hVec2(8);
|
||||
thrust::copy(dVec.begin(), dVec.end(), hVec2.begin());
|
||||
@ -66,6 +66,7 @@ ExpressionGraph::ExpressionGraph(int cudaDevice)
|
||||
cudaSetDevice(0);
|
||||
|
||||
temp();
|
||||
exit(0);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user