MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / SetStream

Function SetStream

tensorflow/stream_executor/rocm/rocm_fft.cc:146–153  ·  view source on GitHub ↗

Associates the given stream with the given rocFFT plan.

Source from the content-addressed store, hash-verified

144
145// Associates the given stream with the given rocFFT plan.
146bool SetStream(GpuExecutor *parent, hipfftHandle plan, Stream *stream) {
147 auto ret = wrap::hipfftSetStream(parent, plan, AsGpuStreamValue(stream));
148 if (ret != HIPFFT_SUCCESS) {
149 LOG(ERROR) << "failed to run rocFFT routine hipfftSetStream: " << ret;
150 return false;
151 }
152 return true;
153}
154
155} // namespace
156

Callers 7

ROCMBlasClass · 0.70
DoBlasInternalImplMethod · 0.70
DoFftInternalMethod · 0.70
SetSeedMethod · 0.70

Calls 1

AsGpuStreamValueFunction · 0.85

Tested by

no test coverage detected