Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initial (0.18 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

      // Assign an initial value to the variable, mirroring it to each component
      // device.
      {
        TensorHandlePtr initial_value_cpu = FloatTensorHandle(20., status.get());
        ASSERT_TRUE(TF_GetCode(status.get()) == TF_OK) << TF_Message(status.get());
        std::array<TFE_TensorHandle*, 2> components{initial_value_cpu.get(),
                                                    initial_value_cpu.get()};
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Jun 15 15:44:44 GMT 2021
    - 12.5K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function.cc

      if (TF_GetCode(status) != TF_OK) {
        return nullptr;
      }
    
      // Dump the op creation stacktraces for debugging purpose.
      DEBUG_DATA_DUMPER()->DumpOpCreationStackTraces(
          fn_name, kDebugGroupOpStacktrace, "initial", &fn_body->graph);
    
      tensorflow::StackTracesMap stack_traces;
      for (const Node* n : fn_body->graph.nodes()) {
        stack_traces[n->name()] = n->GetStackTrace();
      }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 13.6K bytes
    - Viewed (2)
Back to top