Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Sizeof (0.31 sec)

  1. tensorflow/c/c_api_test.cc

      }
    
      TF_Tensor* FloatTensor2x2(const float* values) {
        const int64_t dims[2] = {2, 2};
        TF_Tensor* t = TF_AllocateTensor(TF_FLOAT, dims, 2, sizeof(float) * 4);
        memcpy(TF_TensorData(t), values, sizeof(float) * 4);
        return t;
      }
    
      TF_Operation* FloatConst2x2(TF_Graph* graph, TF_Status* s,
                                  const float* values, const char* name) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. tensorflow/c/c_test.c

      if (!TF_StringStreamNext(s, &path)) {
        fprintf(stderr, "TF_GetLocalTempDirectories returned no results\n");
        return 1;
      }
    
      char file_name[100];
      time_t t = time(NULL);
      snprintf(file_name, sizeof(file_name), "test-%d-%ld.txt", getpid(), t);
    
      size_t length = 2 + strlen(path) + strlen(file_name);
      char* full_path = malloc(length);
      snprintf(full_path, length, "%s/%s", path, file_name);
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_experimental.cc

      DCHECK(num_dims >= 0) << "Number of dimensions cannot be negative!";
      shape.num_dims = num_dims;
      shape.dims = new int64_t[num_dims];
      memcpy(shape.dims, dims, sizeof(int64_t) * num_dims);
    }
    
    void TF_ShapeAndTypeListSetUnknownShape(TF_ShapeAndTypeList* shape_list,
                                            int index) {
      DCHECK(index >= 0 && index < shape_list->num_items);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
  4. doc/go_spec.html

    a <a href="#Conversions">conversion</a> with a result that is a constant, or
    the result value of some built-in functions such as
    <code>min</code> or <code>max</code> applied to constant arguments,
    <code>unsafe.Sizeof</code> applied to <a href="#Package_unsafe">certain values</a>,
    <code>cap</code> or <code>len</code> applied to
    <a href="#Length_and_capacity">some expressions</a>,
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    a <a href="#Constant_expressions">constant expression</a>,
    a <a href="#Conversions">conversion</a> with a result that is a constant, or
    the result value of some built-in functions such as
    <code>unsafe.Sizeof</code> applied to any value,
    <code>cap</code> or <code>len</code> applied to
    <a href="#Length_and_capacity">some expressions</a>,
    <code>real</code> and <code>imag</code> applied to a complex constant
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

      GraphImportGraphDefLocked(graph, def, options, &results, status);
      DCHECK_EQ(results.return_tensors.size(), num_return_outputs);
      memcpy(return_outputs, results.return_tensors.data(),
             num_return_outputs * sizeof(TF_Output));
    }
    
    void TF_GraphImportGraphDef(TF_Graph* graph, const TF_Buffer* graph_def,
                                const TF_ImportGraphDefOptions* options,
                                TF_Status* status) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top