Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 73 for OP (0.05 sec)

  1. manifests/addons/dashboards/istio-service-dashboard.json

                ]
              },
              "unit": "ops"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byValue",
                  "options": {
                    "op": "gte",
                    "reducer": "allIsNull",
                    "value": 0
                  }
                },
                "properties": [
                  {
                    "id": "custom.hideFrom",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      }
      func.return
      // expected-remark@above {{ID: 6}}
      // expected-remark@above {{Sinks: {5}}}
    }
    
    // -----
    
    // Tests that we create dependencies to a fetch op, even if the fetch op has
    // known effects (in this case due to resource operand) and the resources of
    // other side-effecting ops are independent.
    func.func @fetch_with_resource_operand(
      // expected-remark@above {{ID: 9}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    # Lists of ops whose channel dimension should be changed if per_channel
    # quantization is enabled. Respectively refers to (scale, zero_point).
    _SUFFIXES = ('/filter1', '/filter2')
    _PER_CHANNEL_OP_NAMES = (
        f'{op}{suffix}'
        for op, suffix in itertools.product(_PER_CHANNEL_QUANTIZED_OPS, _SUFFIXES)
    )
    
    
    def _is_variable(node_def: node_def_pb2.NodeDef) -> bool:
      """Determines whether `node_def` is a variable node.
    
      Args:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    bool EqualFunctionNodeDef(const NodeDef& a, const NodeDef& b,
                              const string& diff_preamble, string* diff) {
      if (a.op() != b.op()) {
        if (diff) {
          *diff = absl::StrCat(diff_preamble, " mismatch for node ", a.name(),
                               ", expected op '", a.op(), "' got '", b.op());
        }
        return false;
      }
      if (a.device() != b.device()) {
        if (diff) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

    :{\"mode\":\"off\"}},\"mappings\":[],\"min\":0,\"thresholds\":{\"mode\":\"absolute\",\"steps\":[{\"color\":\"green\",\"value\":null},{\"color\":\"red\",\"value\":80}]},\"unit\":\"ops\"},\"overrides\":[{\"matcher\":{\"id\":\"byValue\",\"options\":{\"op\":\"gte\",\"reducer\":\"allIsNull\",\"value\":0}},\"properties\":[{\"id\":\"custom.hideFrom\",\"value\":{\"legend\":true,\"tooltip\":true,\"viz\":false}}]}]},\"gridPos\":{\"h\":6,\"w\":12,\"x\":0,\"y\":16},\"id\":25,\"links\":[],\"options\":{\"lege...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    	}
    	if name == "magicquery" {
    		// Magic table name and column, known by fakedb_test.go.
    		exec(t, db, "CREATE|magicquery|op=string,millis=int32")
    		exec(t, db, "INSERT|magicquery|op=sleep,millis=10")
    	}
    	if name == "tx_status" {
    		// Magic table name and column, known by fakedb_test.go.
    		exec(t, db, "CREATE|tx_status|tx_status=string")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/reflect/value.go

    func (v Value) Convert(t Type) Value {
    	if v.flag&flagMethod != 0 {
    		v = makeMethodValue("Convert", v)
    	}
    	op := convertOp(t.common(), v.typ())
    	if op == nil {
    		panic("reflect.Value.Convert: value of type " + stringFor(v.typ()) + " cannot be converted to type " + t.String())
    	}
    	return op(v, t)
    }
    
    // CanConvert reports whether the value v can be converted to type t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return
      }
      func.func @empty_func(%arg0: tensor<?xi32>) -> tensor<?xi32> {
        func.return %arg0 : tensor<?xi32>
      }
    }
    
    // -----
    
    // The following op sharding is used in subsequent test cases:
    // Proto debug string:
    //   type: MAXIMAL
    //   tile_assignment_dimensions: 1
    //   tile_assignment_devices: 0
    // Serialized string:
    //   "\08\01\1A\01\01\22\01\00"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			} else {
    				queue = NewTestQueue(ctx, newDefaultQueueSort(),
    					WithClock(testingclock.NewFakeClock(timestamp)))
    			}
    
    			var podInfoList []*framework.QueuedPodInfo
    
    			for i, op := range test.operations {
    				op(t, logger, queue, test.operands[i])
    			}
    
    			expectedLen := len(test.expected)
    			if queue.activeQ.Len() != expectedLen {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

    // Cheap check to tell whether FunctionDef contains a lifted argument.
    bool HasLiftedArgs(const FunctionDef& function_def) {
      return absl::c_any_of(function_def.node_def(), [](const NodeDef& node_def) {
        return (node_def.op() == "Placeholder" &&
                node_def.attr().find(kXlaLiftedArgOutsideCompilationAttrName) !=
                    node_def.attr().end());
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top