Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 98 for getUses (0.41 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

            llvm::dyn_cast_or_null<quantfork::StatisticsOp>(
                op.getOperand(input_index).getDefiningOp()),
            llvm::dyn_cast_or_null<quantfork::StatisticsOp>(
                *op.getResult().getUsers().begin()),
        };
    
        if (!stats_ops[0] || !stats_ops[1]) {
          return failure();  // Already converted to Q-DQ pair.
        }
    
        llvm::SmallVector<llvm::APFloat, 4> min_max_values;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractPropertyLanguageInterOpIntegrationTest.groovy

                            t.getMessage().set("some other value");
                            t.getNumber().set(1.23);
                            t.getList().set(Arrays.asList(1, 2));
                            t.getSet().set(Arrays.asList(1, 2));
                            Map<Integer, Boolean> map = new LinkedHashMap<>();
                            map.put(1, true);
                            map.put(2, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        }
    
        @Override
        public void resolveCredential(final LoginCredentialResolver resolver) {
            resolver.resolve(OpenIdConnectCredential.class, credential -> OptionalEntity.of(credential.getUser()));
        }
    
        @Override
        public ActionResponse getResponse(final SsoResponseType responseType) {
            return null;
        }
    
        @Override
        public String logout(final FessUserBean user) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

                final JvmPoolObj jvmPoolObj = new JvmPoolObj();
                jvmPoolObj.key = p.getName();
                jvmPoolObj.count = p.getCount();
                jvmPoolObj.used = p.getUsed().getBytes();
                jvmPoolObj.capacity = p.getTotalCapacity().getBytes();
                return jvmPoolObj;
            }).toArray(n -> new JvmPoolObj[n]);
            final GarbageCollectors gc = jvmStats.getGc();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

        auto result = execute_output.value();
        if (!result.hasOneUse()) {
          if (VLOG_IS_ON(2)) {
            bool any_user_is_assign = false;
            for (auto result_user : result.getUsers()) {
              any_user_is_assign |= llvm::isa<TF::AssignVariableOp>(result_user);
            }
            if (any_user_is_assign) {
              VLOG(2) << "TPUMergeVariablesWithExecutePass: Skipping output "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

        // Match only when there is one user of the dequantize op.
        if (!op.getResult().hasOneUse()) {
          return failure();
        }
    
        for (Operation* op_with_region : op.getResult().getUsers()) {
          // Among the ops with regions, only reduce_window op is supported for now.
          if (!isa<mlir::stablehlo::ReduceWindowOp>(op_with_region)) {
            return failure();
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_client.go

    			metrics.Used = resource.NewQuantity(usage.GetUsed(), resource.BinarySI)
    		case csipbv1.VolumeUsage_INODES:
    			metrics.InodesFree = resource.NewQuantity(usage.GetAvailable(), resource.BinarySI)
    			metrics.Inodes = resource.NewQuantity(usage.GetTotal(), resource.BinarySI)
    			metrics.InodesUsed = resource.NewQuantity(usage.GetUsed(), resource.BinarySI)
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/KerberosTest.java

                }
            }
    
    
            @Override
            public Kerb5Authenticator clone () {
                Kerb5Authenticator auth = new RefreshableKerb5Authenticator(getSubject(), getUserDomain(), getUser(), getPassword());
                cloneInternal(auth, this);
                return auth;
            }
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

      // `dequantize_op`'s users.
      FailureOr<SmallVector<Operation*>> CollectCandidateOps(
          DequantizeOpT dequantize_op) const {
        auto users = dequantize_op->getResult(0).getUsers();
        return SmallVector<Operation*>(users.begin(), users.end());
      }
    
      // Collects all candidate ops for quantization, which is the operand of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

    // type if provided. If there is no user or user of type, return nullptr.
    template <typename T = Operation*>
    Operation* FindUserOfType(Operation* op) {
      for (Operation* user : op->getUsers()) {
        if (isa<T>(user)) {
          return user;
        }
      }
      return nullptr;
    }
    
    // Returns the first user of the given operation, optionally of the given
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top