Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for focusing (0.29 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

            quant_params_.quant_spec.nodes_blocklist;
        CustomMap custom_map = quant_params_.quant_spec.custom_map;
    
        // Rewrite the floating-point ops to the quantized version, by fusing
        // preceding dequantize ops and succeding quantize ops.
        for (Operation* quantizing_op : quantizing_ops) {
          // If it is requantize op, we shouldn't rewrite this op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    // After this optimization:
    //   %cst = arith.constant dense<1.0> : tensor<f32>
    //   %0 = "tfl.conv_2d"...
    //   %1 = "tfl.add"(%0, %cst) : (tensor<16x16x4xf32>, tensor<f32>)
    // This pattern can enable more fusing opportunities when the binary op is
    // following conv ops.
    template <typename BinaryOpType>
    struct ScalarizeSplatConstantForBroadcastableOps
        : public OpRewritePattern<BinaryOpType> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            if activation_fn is not None:
              # The accuracy is not good when having FusedBatchNorm without
              # activation in this test.
              if has_batch_norm:
                # Fusing is supported for non-training case.
                out, _, _, _, _, _ = nn_ops.fused_batch_norm_v3(
                    out, scale, offset, mean, variance, is_training=False
                )
              out = activation_fn(out)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. RELEASE.md

    *   `tf.nn.embedding_lookup_sparse`
    
        *   Optimized this function for some cases by fusing internal operations.
    
    *   `tf.saved_model.SaveOptions`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top