Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for out_tensor (0.32 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          return value, ty
    
      def _value_to_tensor(self, value, ty, node):
        value, ty = self._index_to_I64(value, ty)
        cst_tensor = self._ssa_name('cst')
        self.emit('\n{} = "tfr.constant_tensor"({})'.format(cst_tensor, value))
        self._emit_with_loc(' : ({}) -> !tfr.tensor'.format(ty), node)
        return cst_tensor, TFRTypes.TENSOR
    
      def _ssa_name(self, prefix):
        if isinstance(prefix, qual_names.QN):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K 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