| 20 | namespace { |
| 21 | |
| 22 | TEST(ProcessUtilTest, NumThreads) { |
| 23 | SessionOptions opts; |
| 24 | opts.config.set_inter_op_parallelism_threads(10); |
| 25 | EXPECT_EQ(10, NumInterOpThreadsFromSessionOptions(opts)); |
| 26 | } |
| 27 | |
| 28 | TEST(ProcessUtilTest, ThreadPool) { |
| 29 | SessionOptions opts; |
nothing calls this directly
no test coverage detected