| 136 | } |
| 137 | |
| 138 | TF_StringStream* TF_GetLocalTempDirectories() { |
| 139 | auto* tmpdirs = new std::vector<::tensorflow::string>; |
| 140 | |
| 141 | ::tensorflow::Env::Default()->GetLocalTempDirectories(tmpdirs); |
| 142 | |
| 143 | auto* list = new TF_StringStream; |
| 144 | list->list = tmpdirs; |
| 145 | list->position = 0; |
| 146 | return list; |
| 147 | } |
| 148 | |
| 149 | TF_CAPI_EXPORT extern uint64_t TF_NowNanos(void) { |
| 150 | return ::tensorflow::Env::Default()->NowNanos(); |