Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for post_callback (0.1 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

          return false;
        }
        return true;
      }
      bool HostCallback(Stream* stream,
                        absl::AnyInvocable<absl::Status() &&> callback) override {
        SP_Stream stream_handle = static_cast<CStream*>(stream)->Handle();
        HostCallbackContext* ctx = new HostCallbackContext{std::move(callback)};
        return stream_executor_->host_callback(&device_, stream_handle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

      ASSERT_FALSE(synchronize_all_called);
      ASSERT_TRUE(executor->SynchronizeAllActivity());
      ASSERT_TRUE(synchronize_all_called);
    }
    
    TEST_F(StreamExecutorTest, HostCallbackOk) {
      se_.host_callback = [](const SP_Device* const device, SP_Stream stream,
                             SE_StatusCallbackFn const callback_fn,
                             void* const callback_arg) -> TF_Bool {
        TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

        // CHECK:  tf.XlaHostCompute
        // CHECK-SAME:_xla_original_oc_node_name = "hcb0", _xla_token_input_nodes = ["_xla_token_arg_node"] 
        "tf.XlaHostCompute"(%cst) <{ancestors = [], cost_estimate_ns = 1000000 : i64, key = "_host_callback", recv_key = "", send_key = "", shapes = [], tpu_core = 0 : i64}> {_xla_original_oc_node_name = "hcb0", _xla_token_input_nodes = ["_xla_token_arg_node"]} : (tensor<i32>) -> ()
        tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top