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

Function TransposeString

tensorflow/stream_executor/blas.cc:23–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21namespace blas {
22
23string TransposeString(Transpose t) {
24 switch (t) {
25 case Transpose::kNoTranspose:
26 return "NoTranspose";
27 case Transpose::kTranspose:
28 return "Transpose";
29 case Transpose::kConjugateTranspose:
30 return "ConjugateTranspose";
31 default:
32 LOG(FATAL) << "Unknown transpose " << static_cast<int32>(t);
33 }
34}
35
36string UpperLowerString(UpperLower ul) {
37 switch (ul) {

Callers 1

ToVlogStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected