Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for out_tensor (0.14 sec)

  1. tensorflow/compiler/jit/xla_launch_util_test.cc

      Tensor* CreateHostTensor(const TensorShape& shape,
                               const gtl::ArraySlice<T> data) {
        Tensor* host_tensor =
            new Tensor(host_allocator_, DataTypeToEnum<T>::v(), shape);
        test::FillValues<T>(host_tensor, data);
        tensors_.push_back(host_tensor);
        return host_tensor;
      }
    
      // Creates a Tensor on device using the device_allocator_
      template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

            args.device_context = new XlaHostRecvDeviceContext(
                stream, device_memory_base, shape, done_event);
    
            Tensor host_tensor;
            TF_RETURN_IF_ERROR(
                ctx->rendezvous()->Send(parsed_key, args, host_tensor, false));
    
            return std::move(done_event);
          };
    }
    
    // Provide RecvDeviceMemoryFunction for XLA host callbacks.  This callback
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        DefaultValuedOptionalAttr<BoolAttr, "false">:$enable_large_batch_splitting
      );
    
      let results = (outs
        Res<Variadic<TF_Tensor>, [{The output tensors.}]>:$out_tensors
      );
    
      TF_DerivedOperandTypeListAttr Tcaptured = TF_DerivedOperandTypeListAttr<1>;
      TF_DerivedOperandTypeListAttr Tin = TF_DerivedOperandTypeListAttr<0>;
    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