Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for visualizations (0.19 sec)

  1. src/internal/trace/traceviewer/http.go

    }
    `
    
    var templMain = template.Must(template.New("").Parse(`
    <html>
    <style>` + CommonStyle + `</style>
    <body>
    <h1>cmd/trace: the Go trace event viewer</h1>
    <p>
      This web server provides various visualizations of an event log gathered during
      the execution of a Go program that uses the <a href='https://pkg.go.dev/runtime/trace'>runtime/trace</a> package.
    </p>
    
    <h2>Event timelines for running goroutines</h2>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/mmu.go

            container.empty();
            container.css('opacity', '');
            chart = new google.visualization.LineChart(container[0]);
            chart = new google.visualization.LineChart(document.getElementById('mmu_chart'));
            chart.draw(data, options);
    
            google.visualization.events.addListener(chart, 'select', selectHandler);
            $('#details').empty();
          }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		}
    	}
    	return message + "\n"
    }
    
    // AddCommand adds an additional command to the set of commands
    // accepted by pprof. This enables extensions to add new commands for
    // specialized visualization formats. If the command specified already
    // exists, it is overwritten.
    func AddCommand(cmd string, format int, post PostProcessor, desc, usage string) {
    	pprofCommands[cmd] = &command{format, post, nil, false, desc, usage}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    // insight into how its elements should be rendered.
    type DotAttributes struct {
    	Nodes map[*Node]*DotNodeAttributes // A map allowing each Node to have its own visualization option
    }
    
    // DotNodeAttributes contains Node specific visualization options.
    type DotNodeAttributes struct {
    	Shape       string                 // The optional shape of the node when rendered visually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  5. README.md

    *   [TensorFlow model optimization roadmap](https://www.tensorflow.org/model_optimization/guide/roadmap)
    *   [TensorFlow White Papers](https://www.tensorflow.org/about/bib)
    *   [TensorBoard Visualization Toolkit](https://github.com/tensorflow/tensorboard)
    *   [TensorFlow Code Search](https://cs.opensource.google/tensorflow/tensorflow)
    
    Learn more about the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/get_compiler_ir.cc

                              BuildExecutable(local_client, result, options));
          absl::StatusOr<std::string> graph = xla::RenderGraph(
              *executable->executable()->module().entry_computation(),
              "Visualization",
              /*debug_options=*/{}, xla::RenderedGraphFormat::kDot,
              /*hlo_render_options=*/{});
          TF_RETURN_IF_ERROR(graph.status());
          return *graph;
        }
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/BUILD

            "tfrt_fallback_registration.cc",
        ],
        hdrs = [
            "tfrt_fallback_registration.h",
        ],
        visibility = [":friends"] + if_google([
            "//learning/brain/experimental/tfrt/visualization:__pkg__",
            # Allow visibility from the mlir language server.
            "//learning/brain/mlir/mlir_lsp_server:__pkg__",
        ]),
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/net/http/pprof/pprof.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package pprof serves via its HTTP server runtime profiling data
    // in the format expected by the pprof visualization tool.
    //
    // The package is typically only imported for the side effect of
    // registering its HTTP handlers.
    // The handled paths all begin with /debug/pprof/.
    // As of Go 1.22, all the paths must be requested with GET.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/internal/profile/graph.go

    	// In and out Contains the nodes immediately reaching or reached by
    	// this node.
    	In, Out EdgeMap
    }
    
    // Graph summarizes a performance profile into a format that is
    // suitable for visualization.
    type Graph struct {
    	Nodes Nodes
    }
    
    // FlatValue returns the exclusive value for this node, computing the
    // mean if a divisor is available.
    func (n *Node) FlatValue() int64 {
    	if n.FlatDiv == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	cppAnonymousPrefixRegExp = regexp.MustCompile(`^\(anonymous namespace\)::`)
    )
    
    // Graph summarizes a performance profile into a format that is
    // suitable for visualization.
    type Graph struct {
    	Nodes Nodes
    }
    
    // Options encodes the options for constructing a graph
    type Options struct {
    	SampleValue       func(s []int64) int64      // Function to compute the value of a sample
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top