Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
AllCmds = []*cobra.Command{
modelCmd,
layerCmd,
gpuKernelCmd,
eventflowCmd,
accuracyCmd,
}
)
View Source
var EvaluationCmd = &cobra.Command{ Use: "evaluation", Short: "Get various information about the evaluation", PersistentPreRunE: func(cmd *cobra.Command, args []string) error { fmt.Println("Running " + cmd.Name()) return nil }, PersistentPostRunE: func(cmd *cobra.Command, args []string) error { safeClose := func(cls ...io.Closer) { for _, c := range cls { if c == nil { return } c.Close() } } safeClose( evaluationCollection, performanceCollection, inputPredictionCollection, modelAccuracyCollection, divergenceCollection, db, ) return nil }, }
Functions ¶
This section is empty.
Types ¶
Source Files ¶
- accuracy.go
- all.go
- database.go
- database_divergence.go
- default.go
- event_flow.go
- gpu_kernel.go
- gpu_kernel_info.go
- gpu_kernel_layer_aggre_achieved_occupancy.go
- gpu_kernel_layer_aggre_dram_read.go
- gpu_kernel_layer_aggre_dram_write.go
- gpu_kernel_layer_aggre_flops.go
- gpu_kernel_layer_aggre_gpu_cpu.go
- gpu_kernel_layer_aggre_info.go
- gpu_kernel_layer_aggre_latency.go
- gpu_kernel_model_aggre_info.go
- gpu_kernel_name_aggre_info.go
- init.go
- layer.go
- layer_aggre_info.go
- layer_aggre_latency.go
- layer_aggre_memory.go
- layer_aggre_occurrence.go
- layer_allocated_memory.go
- layer_info.go
- layer_latency.go
- model.go
- model_info.go
- model_latency.go
- model_throughput.go
- root.go
- utils.go
- writers.go
Click to show internal directories.
Click to hide internal directories.