( value: string | TensorCacheAccessOptions | undefined, )
| 793 | } |
| 794 | |
| 795 | function isTensorCacheAccessOptions( |
| 796 | value: string | TensorCacheAccessOptions | undefined, |
| 797 | ): value is TensorCacheAccessOptions { |
| 798 | return typeof value === "object" && value !== null; |
| 799 | } |
| 800 | |
| 801 | function normalizeCacheAccessOptions( |
| 802 | cacheScopeOrOptions: string | TensorCacheAccessOptions | undefined, |
no outgoing calls
no test coverage detected
searching dependent graphs…