Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RemoteCall (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/decompose_optionals.mlir

    func.func @leaves_remote_calls_alone(%arg0: tensor<!tf_type.string>, %arg1: tensor<!tf_type.string>, %arg2: tensor<i64>) {
      // CHECK: RemoteCall
      // CHECK-SAME: (tensor<!tf_type.string>, tensor<!tf_type.string>, tensor<i64>) -> tensor<!tf_type.string>
      %0 = "tf.RemoteCall"(%arg1, %arg0, %arg2) <{f = @__inference__next_func_3760}> {device = ""} : (tensor<!tf_type.string>, tensor<!tf_type.string>, tensor<i64>) -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_ops.h

                                                                                   \
      REGISTER_KERNEL_BUILDER(                                                     \
          Name("RemoteCall").Device(DEVICE).HostMemory("target"), RemoteCallOp);   \
                                                                                   \
      REGISTER_KERNEL_BUILDER(                                                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        if (!symbol) return failure();
        auto f = llvm::dyn_cast<mlir::func::FuncOp>(symbol);
    
        if (call.getOperation()->getNumOperands() !=
            f.getBody().front().getNumArguments()) {
          return failure();  // RemoteCall et al
        }
    
        rewriter.startOpModification(f);
        bool changed = false;
        for (auto [call_arg, body_arg] :
             llvm::zip(call.getOperation()->getOperands(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_RemoteCallOp : TF_Op<"RemoteCall", [CallOpInterface]> {
      let summary = "Runs function `f` on a remote device indicated by `target`.";
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top