Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for topproto (2.33 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      if (!s.ok()) return s;
    
      GraphDef graphdef_out;
      graph_out->ToGraphDef(&graphdef_out);
      graphdef->Swap(&graphdef_out);
    
      *library = lib_def->ToProto();
      // Remove "_xla_inferred_shapes" attr. They are added by
      // `PerformStaticShapeInferenceBeforeEncapsulation`.
      for (FunctionDef& fdef : *library->mutable_function()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	if err := res.Body.Close(); err != nil {
    		t.Errorf("Close = %v", err)
    	}
    
    	if err := <-writeErr; err == nil {
    		t.Errorf("expected non-nil write error")
    	}
    }
    
    type fooProto struct{}
    
    func (fooProto) RoundTrip(req *Request) (*Response, error) {
    	res := &Response{
    		Status:     "200 OK",
    		StatusCode: 200,
    		Header:     make(Header),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

            if (node != nullptr && node->IsOp()) {
              NodeDef* const node_def = graph_def.add_node();
              *node_def = node->def();
            }
          }
          *graph_def.mutable_library() = graph.flib_def().ToProto();
          if (flags::Global().more_stack_traces.value()) {
            *graph_def.mutable_debug_info() = graph.BuildDebugInfo();
          }
          session->graph->mu.unlock();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          const auto* flib_crash_handle = crash_analysis::ReportProtoDataOnCrash(
              absl::StrCat(current_file_prefix, "_mlir_import_flib.pbtxt"),
              reachable_flib.ToProto());
          cleanup = [=]() {
            crash_analysis::RemoveReportData(graph_crash_handle);
            crash_analysis::RemoveReportData(flib_crash_handle);
          };
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top