Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for debugInfo (0.26 sec)

  1. istioctl/pkg/proxyconfig/clusters.go

    		}
    	}
    	_ = w.Flush()
    	return nil
    }
    
    func parseClusterStatuses(input map[string][]byte) (map[string][]cluster.DebugInfo, error) {
    	statuses := make(map[string][]cluster.DebugInfo, len(input))
    	for istiodKey, bytes := range input {
    		var parsed []cluster.DebugInfo
    		if err := json.Unmarshal(bytes, &parsed); err != nil {
    			return nil, err
    		}
    		statuses[istiodKey] = parsed
    	}
    	return statuses, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/multi_output_op.json

    // RUN: json_to_flatbuffer %p/test_schema.fbs %s | flatbuffer_translate --tflite-flatbuffer-to-mlir --mlir-print-debuginfo -o - | FileCheck %s
    
    // CHECK: #[[LOC0:.*]] = loc("<stdin>":0:0)
    // CHECK: "tfl.split"
    // CHECK-SAME: loc(#[[SPLIT_LOC:.*]])
    // CHECK: #[[LOC1:.*]] = loc("output0"(#[[LOC0]]))
    // CHECK: #[[LOC2:.*]] = loc("output1"(#[[LOC0]]))
    // CHECK: #[[SPLIT_LOC]] = loc(fused[#[[LOC1]], #[[LOC2]]])
    
    {
      "version": 3,
      "operator_codes": [
        {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 03 00:08:31 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_location_roundtrip.mlir

    // RUN: tf-opt %s -mlir-print-debuginfo -mlir-print-local-scope | tf-opt -mlir-print-debuginfo -mlir-print-op-generic -mlir-print-local-scope | FileCheck %s
    
    // This file should be written in the generic form with debug locations.
    // (that is, as if printed with `-mlir-print-debuginfo -mlir-print-op-generic`).
    // The test parses the file, prints it in the pretty form with debug locations,
    // then parses it back, then prints it in the generic form again.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 05 14:24:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/quint8-const.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -o - -mlir-print-debuginfo -mlir-print-local-scope | FileCheck %s
    
    node {
      name: "Quantized_Constant"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_QUINT8
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_QUINT8
            tensor_shape {
            }
            int_val: 7
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 05 09:05:10 UTC 2022
    - 639 bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/loader.h

    // Restore variable and resources in the SavedModel export dir for the
    // indicated metagraph.
    // The recommended way to load a saved model is to call LoadSavedModel,
    // which provides an already initialized Metagraph, Session, and DebugInfo.
    Status RestoreSession(const RunOptions& run_options,
                          const MetaGraphDef& meta_graph, const string& export_dir,
                          std::unique_ptr<Session>* session);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/secretcontroller_test.go

    		{ID: "config", SyncStatus: "synced"},
    		{ID: "c0", SecretName: "istio-system/s0", SyncStatus: "synced"},
    		{ID: "c1", SecretName: "istio-system/s1", SyncStatus: "syncing"},
    	})
    
    	// Sync the last one
    	c.component.ForCluster("c1").Synced.Store(true)
    	assert.EventuallyEqual(t, c.controller.ListRemoteClusters, []cluster.DebugInfo{
    		{ID: "config", SyncStatus: "synced"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_quantization_unit_loc.mlir

    // RUN: tf-quant-opt %s -mlir-print-debuginfo -mlir-print-local-scope -quant-add-quantization-unit-loc | FileCheck %s
    
    func.func @conv2d_unmatching_loc_pattern(%arg0: tensor<1x3x4x3xf32>) -> (tensor<1x3x2x2xf32>) {
      %cst = "tf.Const"() {device = "", value = dense_resource<__elided__> : tensor<2x3x3x2xbf16>} : () -> tensor<2x3x3x2xbf16>
      %0 = "tf.Cast"(%arg0) {Truncate = false, device = ""} : (tensor<1x3x4x3xf32>) -> tensor<1x3x4x3xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 02:39:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller.go

    }
    
    // ListRemoteClusters provides debug info about connected remote clusters.
    func (c *Controller) ListRemoteClusters() []cluster.DebugInfo {
    	// Start with just the config cluster
    	configCluster := "syncing"
    	if kube.AllSynced(c.configClusterSyncers) {
    		configCluster = "synced"
    	}
    	out := []cluster.DebugInfo{{
    		ID:         c.configClusterID,
    		SyncStatus: configCluster,
    	}}
    	// Append each cluster derived from secrets
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

        return nullptr;
      }
    
      tensorflow::GraphDebugInfo debug_info;
      if (debug_info_txt_raw && debug_info_txt_raw != Py_None) {
        std::string debug_info_txt = ConvertArg(debug_info_txt_raw, &error);
        if (error) {
          PyErr_SetString(PyExc_ValueError, "Input DebugInfo is invalid.");
          return nullptr;
        }
        if (!debug_info.ParseFromString(debug_info_txt)) {
          PyErr_SetString(PyExc_ValueError,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. operator/pkg/helmreconciler/wait.go

    		isReady, notReadyObjects, debugInfoObjects, err := waitForResources(objects, client.Kube(), l)
    		notReady = notReadyObjects
    		debugInfo = debugInfoObjects
    		return isReady, err
    	})
    
    	messages := []string{}
    	for _, id := range notReady {
    		debug, f := debugInfo[id]
    		if f {
    			messages = append(messages, fmt.Sprintf("  %s (%s)", id, debug))
    		} else {
    			messages = append(messages, fmt.Sprintf("  %s", debug))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top