Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for init_graph (0.26 sec)

  1. src/go/internal/gccgoimporter/testdata/issue27856.gox

    v2;
    package main;
    pkgpath main;
    import runtime runtime "runtime";
    init runtime runtime..import sys runtime_internal_sys..import;
    init_graph 0 1;
    type <type 1 "E" = <type 2 "F" <type 3 struct { .main._ <type 4 *<type 5 "M" <type 6 struct { E <type 1>; }>>>; }>>>;
    type <type 2>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 293 bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/issue30628.gox

    init_graph 1 0 1 3 1 5 1 6 1 7 1 8 1 9 3 0 3 5 3 6 3 7 4 0 4 1 4 2 4 3 4 5 4 6 4 7 4 8 4 9 5 0 5 6 7 0 7 5 7 6 8 0 8 5 8 6 8 7 9 0 9 5 9 6 9 7 9 8
    types 13 2 24 84 208 17 30 41 147 86 17 64 25 75
    type 1 "Apple" <type 2>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 20:50:13 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/testdata/issue29198.gox

    init_graph 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0 11 0 12 0 13 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 11 1 12 1 13 2 4 2 7 2 8 2 10 2 11 2 12 4 7 4 8 4 10 5 2 5 3 5 4 5 7 5 8 5 10 5 11 5 12 6 7 6 8 6 9 6 10 6 13 7 8 9 7 9 8 10 7 10 8 11 7 11 8 11 10 12...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 23:01:16 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/testdata/time.gox

    v2;
    package time;
    pkgpath time;
    import errors errors "errors";
    import sync sync "sync";
    import syscall syscall "syscall";
    init time time..import runtime runtime..import sync sync..import syscall syscall..import;
    init_graph 0 1 0 2 0 3 2 1 3 1 3 2;
    const ANSIC = "Mon Jan _2 15:04:05 2006";
    func After (d <type 1 "Duration" <type -4>
     func (d <type 1>) String () <type -16>;
     func (d <type 1>) Nanoseconds () <type -4>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/loader.cc

      load_latency_by_stage->GetCell(export_dir, "restore_graph")
          ->Add(restore_graph_walltime);
      // Record wall time spent in init op.
      load_latency_by_stage->GetCell(export_dir, "init_graph")
          ->Add(GetLatencyMicroseconds(graph_init_start_microseconds));
      return absl::OkStatus();
    }
    
    Status LoadSavedModel(const SessionOptions& session_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/parser.go

    	case "init":
    		p.next()
    		for p.tok != '\n' && p.tok != ';' && p.tok != scanner.EOF {
    			p.initdata.Inits = append(p.initdata.Inits, p.parsePackageInit())
    		}
    		p.expectEOL()
    
    	case "init_graph":
    		p.next()
    		// The graph data is thrown away for now.
    		for p.tok != '\n' && p.tok != ';' && p.tok != scanner.EOF {
    			p.parseInt64()
    			p.parseInt64()
    		}
    		p.expectEOL()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tfcompile.bzl

                local = 1,
                tags = tags,
            )
    
            # Now run freeze_graph to convert variables into constants.
            freeze_args = (
                " --input_graph=$(location " + graph + ")" +
                " --checkpoint_version=1" +
                " --input_binary=" + str(not graph.endswith(".pbtxt")) +
                " --input_checkpoint=$(location " + freeze_checkpoint + ")" +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top