Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EXPECT_CALL (0.63 sec)

  1. tensorflow/compiler/jit/device_executable_persistor_test.cc

                                             DefaultXlaOptions().device_type);
    
      MockXlaCompilerClient mock_client;
      EXPECT_CALL(mock_client, SerializeExecutable(_))
          .WillOnce(Return(errors::Unimplemented("Unimplemented.")));
      EXPECT_CALL(mock_client, BuildSerializedExecutable(_, _))
          .WillOnce(Return(serialized_xla_executable_));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compiler_test.cc

      // the compilation finshes to verify expected behavior.
      Notification done;
      EXPECT_CALL(*mock_profiler_,
                  ShouldCompileCluster(_, DeviceCompileMode::kAsync, 1))
          .WillOnce(Return(true));
      EXPECT_CALL(*mock_profiler_, RegisterCompilation(_, _, false))
          .WillOnce([&done] {
            done.Notify();
            return absl::OkStatus();
          });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer_test.cc

      ASSERT_THAT(remat.GetMemProfile(),
                  ElementsAreArray({1, 3, 7, 15, 23, 19, 9, 4}));
    
      EXPECT_CALL(remat, ApplyRemat(FieldsAre(/*begin=*/2,
                                              /*end=*/3,
                                              /*insert=*/5)));
      EXPECT_CALL(remat, ApplyRemat(FieldsAre(/*begin=*/0,
                                              /*end=*/1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top