MCPcopy Create free account
hub / github.com/clMathLibraries/clFFT / GetMax1DLength

Method GetMax1DLength

src/library/plan.cpp:4811–4822  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4809
4810
4811clfftStatus FFTPlan::GetMax1DLength (size_t *longest ) const
4812{
4813 switch(gen)
4814 {
4815 case Stockham: return GetMax1DLengthStockham(longest);
4816 case Transpose_GCN: *longest = 4096; return CLFFT_SUCCESS;
4817 case Transpose_SQUARE: *longest = 4096; return CLFFT_SUCCESS;
4818 case Transpose_NONSQUARE: *longest = 4096; return CLFFT_SUCCESS;
4819 case Copy: *longest = 4096; return CLFFT_SUCCESS;
4820 default: assert(false); return CLFFT_NOTIMPLEMENTED;
4821 }
4822}
4823
4824clfftStatus FFTPlan::GetEnvelope (const FFTEnvelope ** ppEnvelope) const
4825{

Callers 2

clfftBakePlanFunction · 0.80
clfftEnqueueTransformFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected