Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_AllocateTemp (0.2 sec)

  1. tensorflow/c/kernels_test.cc

        alloc_attrs.struct_size = TF_ALLOCATOR_ATTRIBUTES_STRUCT_SIZE;
    #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
        alloc_attrs.on_host = 0;
    #else
        alloc_attrs.on_host = 1;
    #endif
        TF_Tensor* output = TF_AllocateTemp(
            /*context=*/ctx, /*dtype=*/TF_FLOAT, /*dims=*/&dim,
            /*num_dims=*/1, /*allocator_attributes*/ &alloc_attrs, s);
        size_t tensor_size_bytes = TF_DataTypeSize(TF_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.h

    // Tensor must not be used after kernel construction is
    // complete.
    //
    // num_dims must equal the size of array dims
    TF_CAPI_EXPORT extern TF_Tensor* TF_AllocateTemp(
        TF_OpKernelContext* context, TF_DataType dtype, const int64_t* dims,
        int num_dims, TF_AllocatorAttributes* alloc_attrs, TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. tensorflow/c/kernels.cc

      if (!s.ok()) {
        ::tensorflow::Set_TF_Status_from_Status(status, s);
        return nullptr;
      }
      return tf_tensor_output;
    }
    
    TF_Tensor* TF_AllocateTemp(TF_OpKernelContext* context, TF_DataType dtype,
                               const int64_t* dims, int num_dims,
                               TF_AllocatorAttributes* alloc_attrs,
                               TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top