Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for TFE_NewCustomDeviceTensorHandle (0.12 seconds)

  1. tensorflow/c/eager/custom_device_testutil.cc

      TFE_CustomDeviceTensorHandleMethods handle_methods;
      handle_methods.num_dims = &LoggedTensorNumDims;
      handle_methods.dim = &LoggedTensorDim;
      handle_methods.deallocator = &LoggedTensorDeallocator;
      return TFE_NewCustomDeviceTensorHandle(context, logging_device_name.c_str(),
                                             dtype, t.release(), handle_methods,
                                             status);
    }
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Dec 20 23:30:21 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  2. tensorflow/c/eager/c_api.cc

      }
    
     private:
      void* const data_;
      const TFE_CustomDeviceTensorHandleMethods methods_;
    };
    
    }  // namespace
    }  // namespace tensorflow
    
    TFE_TensorHandle* TFE_NewCustomDeviceTensorHandle(
        TFE_Context* ctx, const char* device_name, TF_DataType dtype, void* data,
        TFE_CustomDeviceTensorHandleMethods methods, TF_Status* status) {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Nov 07 05:55:21 GMT 2025
    - 43.9K bytes
    - Click Count (0)
Back to Top