Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _XlaSendFromHost (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        // CHECK-NOT:        "tf._TPUDeviceOrdinalPlaceholder"
        // CHECK:            %[[B_OUTPUT:[0-9]*]] = "tf.B"()
        // CHECK:            "tf._XlaSendFromHost"(%[[B_OUTPUT]], %[[PROGRAM_OUTPUT]])
        // CHECK-SAME:       device_ordinal = 0
        // CHECK-SAME:       device_type = "TPU"
        // CHECK-SAME:       key = "host_compute_channel_0_retvals"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      for (Node* n : g->nodes()) {
        if (n->type_string() == "_XlaSendFromHost") {
          send_from_host = n;
          break;
        }
      }
      if (!send_from_host) {
        return errors::Internal("Shape inference graph ",
                                shape_inference_graph_name,
                                " does not have _XlaSendFromHost node.");
      }
    
      // See if the SendFromHost node exists in `host_graph`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      string name = absl::StrCat("outside_compilation_", cluster, "_",
                                 new_func_name, "_", oc_cluster, "_send");
      NodeBuilder node_builder(opts.WithName(name).GetNameForOp("_XlaSendFromHost"),
                               "_XlaSendFromHost", opts.op_registry());
      node_builder.Input(inputs);
      node_builder.Input(std::move(key_input));
      std::vector<DataType> dtypes;
      for (const auto& node : inputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK: %5 = "tf.Shape"(%4) {_xla_outside_compilation = "0"} : (tensor<1120x8xi32>) -> tensor<2xi32>
        // CHECK: "tf._XlaSendFromHost"(%3#1, %3#2, %4, %5, %0) <{device_ordinal = 0 : i64, device_type = "TPU", key = "host_compute_channel_0_retvals"}> : (tensor<1x1120x8xi32>, tensor<1x1120x8xi32>, tensor<1120x8xi32>, tensor<2xi32>, tensor<3x!tf_type.string>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
Back to top