Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for vminfp (0.1 sec)

  1. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            }
    
        }
    
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
        }
    
        public static void main(final String[] args) {
            final Options options = new Options();
    
            final CmdLineParser parser = new CmdLineParser(options);
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            }
        }
    
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
        }
    
        public static void main(final String[] args) {
            final Options options = new Options();
            final CmdLineParser parser = new CmdLineParser(options);
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/Crawler.java

            }
    
        }
    
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
        }
    
        public static void main(final String[] args) {
            final Options options = new Options();
    
            final CmdLineParser parser = new CmdLineParser(options);
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.cc

        return failure();
    
      mhlo::SelectOp index_select = llvm::dyn_cast_or_null<mhlo::SelectOp>(
          return_op.getOperand(1).getDefiningOp());
      if (!index_select) return failure();
    
      mhlo::MinOp index_select_min = llvm::dyn_cast_or_null<mhlo::MinOp>(
          index_select.getOnTrue().getDefiningOp());
      if (!index_select_min || index_select_min.getLhs() != body.getArgument(1) ||
          index_select_min.getRhs() != body.getArgument(3))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h

        auto operand_type = mlir::cast<ShapedType>(operand.getType());
        if (operand_type.getElementType().isInteger(1)) {
          // TF does not support min or max on boolean (int1) arguments.
          // Use AnyOp for MaxOp and AllOp for MinOp.
          auto tf_reduce_op = rewriter.create<BooleanReduce>(
              reduce_op.getLoc(), reduce_op->getResult(0).getType(), operand,
              reduction_indices,
              /*keep_dim=*/rewriter.getBoolAttr(false));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

      } else if (merge_op == "Mul") {
        BuildReduceBody<MulOp>(element_type, &all_reduce.getComputation(),
                               &builder);
      } else if (merge_op == "Min") {
        BuildReduceBody<MinOp>(element_type, &all_reduce.getComputation(),
                               &builder);
      } else if (merge_op == "Max") {
        BuildReduceBody<MaxOp>(element_type, &all_reduce.getComputation(),
                               &builder);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

        TypeID::get<TF::MaxOp>(),
        TypeID::get<TF::MaximumOp>(),
        TypeID::get<TF::MaxPoolOp>(),
        TypeID::get<TF::MaxPool3DOp>(),
        TypeID::get<TF::MeanOp>(),
        TypeID::get<TF::MinOp>(),
        TypeID::get<TF::MinimumOp>(),
        TypeID::get<TF::MulNoNanOp>(),
        TypeID::get<TF::OneHotOp>(),
        TypeID::get<TF::OnesLikeOp>(),
        TypeID::get<TF::PackOp>(),
        TypeID::get<TF::PadV2Op>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_test_util.cc

      TFE_TensorHandle* th = TFE_NewTensorHandleFromTensor(ctx, t, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteTensor(t);
      TF_DeleteStatus(status);
      return th;
    }
    
    TFE_Op* MinOp(TFE_Context* ctx, TFE_TensorHandle* input,
                  TFE_TensorHandle* axis) {
      TF_Status* status = TF_NewStatus();
    
      TFE_Op* op = TFE_NewOp(ctx, "Min", status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	UBI_IOCVOLUP                     = 0x40084f00
    	VDISCARD                         = 0xd
    	VEOF                             = 0x4
    	VEOL                             = 0xb
    	VEOL2                            = 0x10
    	VMIN                             = 0x6
    	VREPRINT                         = 0xc
    	VSTART                           = 0x8
    	VSTOP                            = 0x9
    	VSUSP                            = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            return failure();
        } else {
          return failure();
        }
        return success();
      }
    };
    
    class ConvertReduceOpToTfMin
        : public ConvertReduceOpToTfOp<mhlo::MinOp, TF::MinOp> {
     public:
      using ConvertReduceOpToTfOp::ConvertReduceOpToTfOp;
    
      LogicalResult MatchInitValue(Value init_value) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top