Home
last modified time | relevance | path

Searched refs:tfType (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/go/genop/internal/
Dgenop.go501 func goType(tfType string) (string, error) {
502 list, tfType := parseTFType(tfType)
504 switch tfType {
520 return "", fmt.Errorf("%q is not a recognized DataType", tfType)
581 func parseTFType(tfType string) (list bool, typ string) {
586 if strings.HasPrefix(tfType, listPrefix) && strings.HasSuffix(tfType, listSuffix) {
587 return true, strings.TrimSuffix(strings.TrimPrefix(tfType, listPrefix), listSuffix)
589 return false, tfType
/external/deqp/modules/gles3/functional/
Des3fLifetimeTests.cpp310 BufferTfAttacher (lt::Context& ctx, Type& bufferType, Type& tfType) in BufferTfAttacher() argument
311 : Attacher (ctx, bufferType, tfType) {} in BufferTfAttacher()