Skip to content
Snippets Groups Projects
Commit 28ffedb7 authored by Noam Zerah's avatar Noam Zerah
Browse files

Merge branch 'feat_operator_bitshift' of...

Merge branch 'feat_operator_bitshift' of https://gitlab.eclipse.org/noamzerah/aidge_backend_cpu into feat_operator_bitshift
parents a7a80e6d 30094d2c
No related branches found
No related tags found
1 merge request!88Added Bitshift Operator
Pipeline #55084 passed with warnings
This commit is part of merge request !88. Comments created here will be created in the context of that merge request.
...@@ -46,6 +46,7 @@ void BitShiftImpl_cpu_forward_kernel( ...@@ -46,6 +46,7 @@ void BitShiftImpl_cpu_forward_kernel(
std::size_t idx1 = getFlattenedIndex(input1Dims, indexes); std::size_t idx1 = getFlattenedIndex(input1Dims, indexes);
std::size_t idx2 = getFlattenedIndex(input2Dims, indexes); std::size_t idx2 = getFlattenedIndex(input2Dims, indexes);
if(direction == BitShift_Op::BitShiftDirection::right) if(direction == BitShift_Op::BitShiftDirection::right)
{ {
output[oIndex]= input_1[idx1] >> input_2[idx2]; output[oIndex]= input_1[idx1] >> input_2[idx2];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment