Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,549 for operator_ (0.15 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    // The actual builtin operator code value will exist in the
    // `deprecated_builtin_code` field. At the same time, it implies that
    // `deprecated_builtin_code` >= `builtin_code` and the maximum value of the two
    // fields will be same with `deprecated_builtin_code'.
    //
    // - Supporting builtin operator codes beyonds 127
    //
    // New builtin operators, whose operator code is larger than 127, can not be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      // There should be two ops: the split and add in the original model.
      EXPECT_THAT(*readonly_subgraph->operators(), SizeIs(2));
      EXPECT_THAT(subgraph->operators, SizeIs(2));
      const auto& split = subgraph->operators[0];
      const auto& add = subgraph->operators[1];
      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[split->opcode_index].get()),
                  Eq(BuiltinOperator_SPLIT));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      // Encodes `shape` with unknown dimensions. Unknown dimensions are
      // represented with -1.
      shape_signature:[int]; // Optional.
    }
    
    // A list of builtin operators. Builtin operators are slightly faster than custom
    // ones, but not by much. Moreover, while custom operators accept an opaque
    // object containing configuration parameters, builtins have a predetermined
    // set of acceptable options.
    // LINT.IfChange
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  4. operator/cmd/operator/server.go

    	metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
    
    	root "istio.io/istio/operator/cmd/mesh"
    	"istio.io/istio/operator/pkg/apis"
    	"istio.io/istio/operator/pkg/controller"
    	"istio.io/istio/operator/pkg/controller/istiocontrolplane"
    	"istio.io/istio/operator/pkg/metrics"
    	"istio.io/istio/pkg/ctrlz"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/version"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    		case selection.GreaterThan, selection.LessThan:
    			// Adding a separate case for these operators to indicate that this is deliberate
    			return nil, fmt.Errorf("%q isn't supported in label selectors", req.Operator())
    		default:
    			return nil, fmt.Errorf("%q is not a valid label selector operator", req.Operator())
    		}
    		labelSelector.MatchExpressions = append(labelSelector.MatchExpressions, LabelSelectorRequirement{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    			}
    		}
    		return (r.operator == selection.GreaterThan && lsValue > rValue) || (r.operator == selection.LessThan && lsValue < rValue)
    	default:
    		return false
    	}
    }
    
    // Key returns requirement key
    func (r *Requirement) Key() string {
    	return r.key
    }
    
    // Operator returns requirement operator
    func (r *Requirement) Operator() selection.Operator {
    	return r.operator
    }
    
    // Values returns requirement values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  7. samples/addons/README.md

    ### Prometheus Operator
    
    The [Prometheus Operator](https://github.com/coreos/prometheus-operator) manages and operators a Prometheus instance.
    
    As an alternative to the standard Prometheus deployment, we provide a `ServiceMonitor` to monitor the Istio control plane and `PodMonitor`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      // Encodes `shape` with unknown dimensions. Unknown dimensions are
      // represented with -1.
      shape_signature:[int]; // Optional.
    }
    
    // A list of builtin operators. Builtin operators are slightly faster than custom
    // ones, but not by much. Moreover, while custom operators accept an opaque
    // object containing configuration parameters, builtins have a predetermined
    // set of acceptable options.
    // LINT.IfChange
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/variable_info.h

      VariableInfo(VariableInfo&& other);
    
      VariableInfo& operator=(VariableInfo&& other);
    
      VariableInfo(const VariableInfo&) = delete;
      VariableInfo& operator=(const VariableInfo&) = delete;
    
      // The index of the DT_RESOURCE input to the _XlaCompile/_XlaRun operator.
      // Note that the indices can be different between _XlaCompile and _XlaRun.
      int index() const { return index_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

                                FunctionLibraryDefinition* flib_def);
    
      // b) we rewrite the function calls generated in phase (a) into XlaLaunch
      //    operators. We also convert the XlaClusterOutput output nodes of the
      //    function call into the outputs of the XlaLaunch operator.
      static Status BuildXlaLaunchOps(Graph* graph);
    
      struct XlaFunctionInfo {
        int variable_start_index = -1;
        std::string function_name;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top