Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for OpName (0.11 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		bh := -1 // Only for lr/tar/ctr variants.
    		switch opName {
    		case "bclr", "bclrl", "bcctr", "bcctrl", "bctar", "bctarl":
    			bh = int(inst.Args[2].(Imm))
    		}
    
    		if bo&0x14 == 0x14 {
    			if bo == 0x14 && bi == Cond0LT { // preferred form of unconditional branch
    				// Likewise, avoid printing fake b/ba/bl/bla
    				if opName != "bc" && opName != "bca" && opName != "bcl" && opName != "bcla" {
    					startArg = 2
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/short_test.go

    }
    
    func testShortCircuit(t *testing.T, opName string, arg1, arg2 bool, fn func(bool, bool) bool, wantRightCall, wantRes bool) {
    	rightCalled = false
    	got := fn(arg1, arg2)
    	if rightCalled != wantRightCall {
    		t.Errorf("failed for %t %s %t; rightCalled=%t want=%t", arg1, opName, arg2, rightCalled, wantRightCall)
    	}
    	if wantRes != got {
    		t.Errorf("failed for %t %s %t; res=%t want=%t", arg1, opName, arg2, got, wantRes)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/scripts/process-log.groovy

            line = line.substring(line.indexOf('LoggingExcludeFactory] ') + 23)
            String opName = line.contains('"name": "allOf"') ?  'allOf' : 'anyOf'
            File outDir = opName == 'allOf' ? allOfDir : anyOfDir
            def sorted = sort(line)
            String opNameWithHash = "${opName}-${sorted.hashCode()}"
    
            Counter counter = opCounters[opNameWithHash]
            counter.inc()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope_internal.h

     private:
      friend class Scope;
    
      // Tag types to choose the constructor to dispatch.
      struct Tags {
        enum class ScopeName;
        enum class OpName;
        enum class ControlDeps;
        enum class Device;
        enum class SingleUseScope;
        enum class ExitOnError;
        enum class KernelLabel;
        enum class Colocate;
        enum class AssignedDevice;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.td

    //===----------------------------------------------------------------------===//
    
    class IsFusedOpEndsWith<string OpName> : AttrConstraint<
      CPred<"!$_self.cast<ArrayAttr>().empty() && "
            "$_self.cast<ArrayAttr>()[$_self.cast<ArrayAttr>().size() - 1]."
            "cast<::mlir::StringAttr>().str() == \"" # OpName # "\"">,
      "Matching fused '" # OpName # "' op at the end">;
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

              &effects) const {}
    };
    
    void *TensorFlowDialect::getRegisteredInterfaceForOp(
        mlir::TypeID interface, mlir::OperationName opName) {
      if (interface == TypeID::get<mlir::MemoryEffectOpInterface>()) {
        // Don't use fallback for modelled ops.
        if (opName.isRegistered()) return nullptr;
    
        // Only use fallback interface for known not-stateful ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/converter_gen.cc

      for (const auto *def : defs) {
        // TFLite ops in the .td file are expected to follow the naming convention:
        // TFL_<OpName>Op.
        // The generated TFLite op C++ class should be TFL::<OpName>Op.
        // The generated operator's options should be tflite::<OpName>Options.
        // The option builder should be Create<OpName>Options.
        if (!def->getName().starts_with("TFL_"))
          PrintFatalError(def->getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/metrics/metrics.go

    // volume_operation_total_errors for provisioning/deletion operations
    func RecordVolumeOperationErrorMetric(pluginName, opName string) {
    	if pluginName == "" {
    		pluginName = "N/A"
    	}
    	volumeOperationErrorsMetric.WithLabelValues(pluginName, opName).Inc()
    }
    
    // operationTimestamp stores the start time of an operation by a plugin
    type operationTimestamp struct {
    	pluginName string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/README.md

                          const std::vector<Output>& grad_inputs,
                          std::vector<Output>* grad_outputs) {
          ...
          return scope.status();
        }
        REGISTER_GRADIENT_OP("OpName", OpNameGrad);
        ```
    
    3.  Ops gradients are implemented by using the
        [C++ API](https://www.tensorflow.org/api_docs/cc/).
    
    4.  Tests should be included in `foo_grad_test.cc`. Please see
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 19:12:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradients.cc

      // gradients to `src` (if there are more than one).
      Status SumGradients(const Output& src, Output* grad);
    
      // Returns true if `opname` is registered in `registry_` with no gradient
      // function, false otherwise.
      bool IsPrimitiveOpWithNoGrad(const string& opname);
    
      // Call the gradient function for `op`, storing the result in `grad_outputs`.
      Status CallGradFunction(const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top