Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 181 for paid (0.04 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

                if (rightValue == null) {
                    setDiff.leftOnly.add(leftEntry.getValue());
                } else {
                    Pair<T, T> pair = Pair.of(leftEntry.getValue(), rightValue);
                    setDiff.common.add(pair);
                }
            }
    
            for (T rightValue : indexedRight.values()) {
                setDiff.rightOnly.add(rightValue);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

      // Expand + Squeeze op.
      if (llvm::isa<TF::ExpandDimsOp>(producer_op)) {
        if (!llvm::isa<TF::SqueezeOp>(consumer_op)) {
          // Expand/Squeeze op must come in pair.
          return rewriter.notifyMatchFailure(
              op, "ExpandDimsOp and SqueezeOp should come in pair");
        }
        expand_op = llvm::cast<TF::ExpandDimsOp>(producer_op);
        squeeze_op = llvm::cast<TF::SqueezeOp>(consumer_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

    // A boolean attribute used to describe whether input activations need to be
    // asymmetrically quantized.
    constexpr char kAsymmetricQuantizeInputsAttr[] = "asymmetric_quantize_inputs";
    
    using QuantizationUnits = llvm::SetVector<std::pair<Operation*, int>>;
    
    // Applies prepare dynamic range quantization on the model in TFL dialect.
    // This pass runs before the quantization pass and apply preprocess if
    // applicable.
    class PrepareDynamicRangeQuantizePass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

    // the declarations in passes.h.
    #define GEN_PASS_DEF_QUANTIZEWEIGHTPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    using QuantizationUnits = llvm::SetVector<std::pair<Operation*, int>>;
    using mlir::stablehlo::ConstantOp;
    using mlir::stablehlo::ConvertOp;
    using ::stablehlo::quantization::QuantizationComponentSpec;
    
    // Min/Max values used for creating ConstantOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

             * Finds the longest {@code path} prefix that identifies an included build and returns a pair
             * with the matching {@code path} prefix and {@link BuildState included build reference}.
             *
             * @return {@code null} if no {@code path} prefix identifying an included build is found
             */
            @Nullable
            private Pair<Path, BuildState> resolveIncludedBuildPrefixOf(Path path) {
                Path resolvedPath = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. src/encoding/base32/base32_test.go

    			}
    
    			if pair.decoded != string(decReader) {
    				t.Errorf("Expected %s got %s; Encoding %d", pair.decoded, decReader, encIndex)
    			}
    		}
    	}
    }
    
    func TestDecodeSmallBuffer(t *testing.T) {
    	encodings := []*Encoding{
    		StdEncoding,
    		StdEncoding.WithPadding(NoPadding),
    	}
    
    	for bufferSize := 1; bufferSize < 200; bufferSize++ {
    		for _, pair := range pairs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/syscall/exec_linux.go

    		// Signal self if parent is already dead. This might cause a
    		// duplicate signal in rare cases, but it won't matter when
    		// using SIGKILL.
    		pid, _ = rawSyscallNoError(SYS_GETPPID, 0, 0, 0)
    		if pid != ppid {
    			pid, _ = rawSyscallNoError(SYS_GETPID, 0, 0, 0)
    			_, _, err1 = RawSyscall(SYS_KILL, pid, uintptr(sys.Pdeathsig), 0)
    			if err1 != 0 {
    				goto childerror
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

    import org.gradle.integtests.fixtures.executer.OutputScrapingExecutionFailure
    import org.gradle.integtests.fixtures.executer.OutputScrapingExecutionResult
    import org.gradle.internal.Pair
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.tooling.BuildAction
    import org.gradle.tooling.BuildActionExecuter
    import org.gradle.tooling.BuildActionFailureException
    import org.gradle.tooling.BuildException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        return (*buffer_to_size)[op.getOperand(index + 1)].fixed;
      };
      OpBuilder builder(op);
      for (const auto& pair : llvm::zip(branches, branch_maps)) {
        func::FuncOp branch = std::get<0>(pair);
        llvm::SmallDenseMap<Value, SizeInfo>& branch_map = std::get<1>(pair);
        ModifyFunctionSignature(branch, cutil::GetSizeType(builder), &branch_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

        const int cifg_non_intermediate = 0;
        op_property->inputs.erase(
            std::remove_if(
                op_property->inputs.begin(), op_property->inputs.end(),
                [&](std::pair<int, operator_property::TensorProperty> input) {
                  return cifg_non_inputs.find(input.first) != cifg_non_inputs.end();
                }),
            op_property->inputs.end());
        op_property->intermediates.erase(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top