Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for visualizations (0.58 sec)

  1. 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)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/ProjectReportsPlugin.java

    import org.gradle.api.tasks.diagnostics.TaskReportTask;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.util.internal.WrapUtil;
    
    /**
     * <p>A {@link Plugin} which adds some project visualization report tasks to a project.</p>
     *
     * @see <a href="https://docs.gradle.org/current/userguide/project_report_plugin.html">Project Report plugin reference</a>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 13 12:55:19 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. pkg/ctrlz/topics/scopes.go

    	"debug": log.DebugLevel,
    	"info":  log.InfoLevel,
    	"warn":  log.WarnLevel,
    	"error": log.ErrorLevel,
    	"none":  log.NoneLevel,
    }
    
    // ScopeTopic returns a ControlZ topic that allows visualization of process logging scopes.
    func ScopeTopic() fw.Topic {
    	return scopeTopic{}
    }
    
    func (scopeTopic) Title() string {
    	return "Logging Scopes"
    }
    
    func (scopeTopic) Prefix() string {
    	return "scope"
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    createObjectURL(blob);anchor.click();mark.end();},onLoadVisualization_(event){if(!this.visualizationLoaded_){this.$.visualizations.style.display='block';this.$.visualizations.build(this.$.table.leafHistograms,this.histograms);this.visualizationLoaded_=true;}else if(this.$.visualizations.style.display==='none'){this.$.visualizations.style.display='block';}else{this.$.visualizations.style.display='none';}},});return{};});'use strict';tr.exportTo('tr.ui',function(){Polymer({is:'tr-ui-sp-metrics-sid...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  6. src/cmd/pprof/pprof.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // pprof is a tool for visualization of profile.data. It is based on
    // the upstream version at github.com/google/pprof, with minor
    // modifications specific to the Go distribution. Please consider
    // upstreaming any modifications to these packages.
    
    package main
    
    import (
    	"crypto/tls"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/mklockrank.go

    	}
    
    	g, err := dag.Parse(ranks)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	var out []byte
    	if *flagDot {
    		var b bytes.Buffer
    		g.TransitiveReduction()
    		// Add cyclic edges for visualization.
    		for k := range cyclicRanks {
    			g.AddEdge(k, k)
    		}
    		// Reverse the graph. It's much easier to read this as
    		// a "<" partial order than a ">" partial order. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top