Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for renderGraphs (0.11 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                $.ajax({
                    url: jsonFile,
                    dataType: 'json',
                    success: allData => renderGraphs(allData, charts)
                });
            });
        };
    
        window.performanceTests = {
            createPerformanceGraph: createPerformanceGraph,
            renderGraph: renderGraph,
            togglePlot: togglePlot
        }
    })($, window);
    
    $(document).ready(function() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/ExecutionGraph.java

            html.h3().text(title).end();
            html.div().id(id).classAttr("chart").end();
            html.dir().id(id + "Legend").end();
            html.script().raw(String.format("performanceTests.renderGraph(%s, %s, 'execution %d', 'ms', '%s', [])", getData(), getTicks(), index, id)).end();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/get_compiler_ir.cc

          TF_ASSIGN_OR_RETURN(std::unique_ptr<xla::LocalExecutable> executable,
                              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=*/{});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top