You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GCC/Compiler version (if compiling from source): gcc 9.4.0
CUDA/cuDNN version: cuda11.6/cuDNN8
Describe the current behavior
My usage is:
SessionOptions options;
options.config.mutable_gpu_options()->set_cuda_graph_enable_jit(true);
auto status = tensorflow::LoadSavedModel(options, tensorflow::RunOptions(), model_path, {"serve"}, &bundle);
for (int i = 0; i < loops; ++i) {
status = bundle.session->Run(inputs, out_names, {}, &outputs);
}
But I can't observe cudaGraph used in nsight system.
Describe the expected behavior
Some sub graph can run by cuda Graph.
Are there any examples of using cuda Graph?
The text was updated successfully, but these errors were encountered:
I found that because I didn't compile DeepRec with XLA.
After I fix it, there will be cudaGraphLaunch in the graph when running.
But sometimes the results are random error, why?
System information
Describe the current behavior
My usage is:
But I can't observe cudaGraph used in nsight system.
Describe the expected behavior
Some sub graph can run by cuda Graph.
Are there any examples of using cuda Graph?
The text was updated successfully, but these errors were encountered: