Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 389 for multOp (0.14 sec)

  1. internal/s3select/sql/parser.go

    }
    
    // Grammar for Operand:
    //
    // operand → multOp ( ("-" | "+") multOp )*
    // multOpunary ( ("/" | "*" | "%") unary )*
    // unary   → "-" unary | primary
    // primary → Value | Variable | "(" expression ")"
    //
    
    // An Operand is a single term followed by an optional sequence of
    // terms separated by +/-
    type Operand struct {
    	Left  *MultOp     `parser:"@@"`
    	Right []*OpFactor `parser:"(@@)*"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. internal/s3select/sql/evaluate.go

    		if rerr != nil {
    			return nil, rerr
    		}
    		err := lval.arithOp(op, rval)
    		if err != nil {
    			return nil, err
    		}
    	}
    	return lval, nil
    }
    
    func (e *MultOp) evalNode(r Record, tableAlias string) (*Value, error) {
    	lval, lerr := e.Left.evalNode(r, tableAlias)
    	if lerr != nil || len(e.Right) == 0 {
    		return lval, lerr
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        -webkit-filter: grayscale(1);
        opacity: 0.7;
    }
    
    .multi-language-selector .language-option.selected {
        background-color: #f7f7f8;
        color: #02303a;
        filter: none;
        -webkit-filter: none;
        opacity: 1;
    }
    
    .multi-language-text.hidden,
    .multi-language-selector ~ .multi-language-sample.hidden {
        display: none;
    }
    
    .multi-language-sample {
        border-radius: 0 0 4px 4px;
    }
    
    .dark-mode {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold_test.cc

      Operation* op_to_fold = FindOperationOfType<TF::MulOp>(test_func);
      SmallVector<Value> results = ConstantFoldOpIfPossible(op_to_fold);
      EXPECT_THAT(results, SizeIs(1));
      // No constant-folding since the second operand is an argument.
      TF::MulOp mul_op = dyn_cast_or_null<TF::MulOp>(results[0].getDefiningOp());
      EXPECT_THAT(mul_op, NotNull());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    ${testFrameworkChoice.raw}
    Project name (default: demo):
    ${packageNameChoice.raw}
    
    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    The `init` task generates the new project with the following structure:
    
    [source.multi-language-sample,kotlin]
    ----
    ├── gradle // <1>
    │   ├── libs.versions.toml // <2>
    │   └── wrapper
    │       ├── gradle-wrapper.jar
    │       └── gradle-wrapper.properties
    ├── gradlew // <3>
    ├── gradlew.bat // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

      if (!dq_op) {
        auto mul_op = builder.create<TF::MulOp>(loc, value, multiplier);
        return mul_op.getResult();
      }
      auto q_op = dq_op.getArg().getDefiningOp<quantfork::QuantizeCastOp>();
      if (!q_op) return {};
    
      Value float_value = q_op.getArg();
      Value new_value = builder.create<TF::MulOp>(loc, float_value, multiplier);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

        // type.
        scale_op = rewriter.create<TF::CastOp>(
            loc, UnrankedTensorType::get(rewriter.getBF16Type()), scale_op);
      }
    
      auto mul_op = rewriter.create<TF::MulOp>(loc, new_cast_op.getType(), scale_op,
                                               new_cast_op);
      return mul_op;
    }
    
    // Add uniform quantization's dequantization logic.
    std::optional<TF::PartitionedCallOp> AddUniformDequantizeOps(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

        multiplier = rewriter.create<mhlo::RsqrtOp>(bn_op.getLoc(), multiplier);
        multiplier = rewriter.create<mhlo::MulOp>(bn_op.getLoc(), multiplier,
                                                  bn_op.getScale());
    
        // Compute rhs = offset - mean * multiplier
        Value rhs = rewriter.create<mhlo::MulOp>(bn_op.getLoc(), multiplier,
                                                 bn_op.getMean());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. docs/site-replication/run-multi-site-ldap.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top