aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_cost_analysis.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-12-22 19:28:38 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-12-22 19:32:50 -0800
commit7d1072dd3374a0aa22637a0fd4a17a4ddd064110 (patch)
tree610b7bc7d64a0e31481f7f080f1ce49168120f09 /tensorflow/compiler/xla/service/hlo_cost_analysis.h
parent12a4c9b8628b23cc2bf4c89c83c32760aded6124 (diff)
Adds FFT for XLA: CPU via Eigen, GPU via cuFFT.
GPU support includes plan reuse with new scratch allocator per execution in fft_thunk. PiperOrigin-RevId: 179983419
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_cost_analysis.h')
-rw-r--r--tensorflow/compiler/xla/service/hlo_cost_analysis.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_cost_analysis.h b/tensorflow/compiler/xla/service/hlo_cost_analysis.h
index fade19522c..e5783539e5 100644
--- a/tensorflow/compiler/xla/service/hlo_cost_analysis.h
+++ b/tensorflow/compiler/xla/service/hlo_cost_analysis.h
@@ -67,6 +67,7 @@ class HloCostAnalysis : public ConstDfsHloVisitor {
Status HandleCopy(const HloInstruction* copy) override;
Status HandleDot(const HloInstruction* dot) override;
Status HandleConvolution(const HloInstruction* convolution) override;
+ Status HandleFft(const HloInstruction* fft) override;
Status HandleCrossReplicaSum(const HloInstruction* crs) override;
Status HandleInfeed(const HloInstruction* infeed) override;
Status HandleOutfeed(const HloInstruction* outfeed) override;