Commit 6ba14a08 authored by tyhsu's avatar tyhsu

Add decoding information

parent 7f2cd45e
...@@ -160,6 +160,7 @@ void Read_Data(char *filename, int *data_sent, float *data_received) ...@@ -160,6 +160,7 @@ void Read_Data(char *filename, int *data_sent, float *data_received)
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
int code_length = 8448, BG = 1;
int *input = (int*)malloc(1056*sizeof(int)); int *input = (int*)malloc(1056*sizeof(int));
float *llr = (float*)malloc(26112*sizeof(float)); float *llr = (float*)malloc(26112*sizeof(float));
...@@ -215,6 +216,8 @@ int main(int argc, char **argv) ...@@ -215,6 +216,8 @@ int main(int argc, char **argv)
cudaDeviceSynchronize(); cudaDeviceSynchronize();
printf("BG %d, Zc %d, code_length %d\n", BG, Zc, code_length);
cudaEvent_t start, end; cudaEvent_t start, end;
float time; float time;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment