Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BAD RESULT #10

Open
GaHooooo opened this issue Nov 18, 2021 · 7 comments
Open

BAD RESULT #10

GaHooooo opened this issue Nov 18, 2021 · 7 comments

Comments

@GaHooooo
Copy link

Hi, thaks for your great work!
but i have some problem in this work

This is my device
GPU:GTX1080Ti
CUDA : 10.2
cudnn :8.2
TensorRT:7.1.3.4

image

but the result is bad
i found that the time used almost increase hundredfold than your report(PostProcessDuration Time)
[11/18/2021-10:12:50] [I] [INFO] pointNum : 278272
[11/18/2021-10:12:51] [I] PreProcess Time: 49.6466 ms
[11/18/2021-10:12:51] [I] inferenceDuration Time: 28.344 ms
[11/18/2021-10:12:51] [I] PostProcessDuration Time: 124.939 m

0a0d6b8c2e884134a3b48df43d54c36a.bin.txt

and i open the result
found the ouput has 1445 point
i follow your readme
https://github.com/CarkusL/CenterPoint/tree/main/tensorrt/samples/centerpoint

CAN YOU HELP ME

@CarkusL
Copy link
Owner

CarkusL commented Nov 21, 2021

Did you use -O3 flag when you compiled the program?

CFLAGS = $(COMMON_FLAGS) -O3

@CarkusL
Copy link
Owner

CarkusL commented Nov 21, 2021

By the way, The post-processing runs on the CPU, and it is not accelerated with GPU. It will take a lot of time, when the model outputs many boxs

@GaHooooo
Copy link
Author

Did you use -O3 flag when you compiled the program?

CFLAGS = $(COMMON_FLAGS) -O3

i use -O3 flag
image
My biggest confusion is that why my result is different from yours,my result has 1445 boxes

@CarkusL
Copy link
Owner

CarkusL commented Dec 1, 2021

Did you use -O3 flag when you compiled the program?

CFLAGS = $(COMMON_FLAGS) -O3

i use -O3 flag image My biggest confusion is that why my result is different from yours,my result has 1445 boxes

why does your result have so many boxs?

@ZHUANG-JLU
Copy link

Did you use -O3 flag when you compiled the program?

CFLAGS = $(COMMON_FLAGS) -O3

i use -O3 flag image My biggest confusion is that why my result is different from yours,my result has 1445 boxes

I met the same problem,1445 boxes

@aisaack
Copy link

aisaack commented Nov 11, 2022

Did you use -O3 flag when you compiled the program?

CFLAGS = $(COMMON_FLAGS) -O3

i use -O3 flag image My biggest confusion is that why my result is different from yours,my result has 1445 boxes

I met the same problem,1445 boxes

I'm facing same problem.
It seems the command line ./centerpoint automatically apply fp16 quantization. How to avoid applying it?

@aisaack
Copy link

aisaack commented Nov 15, 2022

Did you use -O3 flag when you compiled the program?

CFLAGS = $(COMMON_FLAGS) -O3

i use -O3 flag image My biggest confusion is that why my result is different from yours,my result has 1445 boxes

I met the same problem,1445 boxes

I'm facing same problem. It seems the command line ./centerpoint automatically apply fp16 quantization. How to avoid applying it?

Since the sample doesn't use fp16 computation and I don't have fp16 supported GPUs, the code line should be changed from

to

     params.fp16 = args.fp16; 

or to

    params.fp16 = false;

Then similar result can be achieved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants