Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 475 for qint (0.07 sec)

  1. src/go/ast/ast_test.go

    var isDirectiveTests = []struct {
    	in string
    	ok bool
    }{
    	{"abc", false},
    	{"go:inline", true},
    	{"Go:inline", false},
    	{"go:Inline", false},
    	{":inline", false},
    	{"lint:ignore", true},
    	{"lint:1234", true},
    	{"1234:lint", true},
    	{"go: inline", false},
    	{"go:", false},
    	{"go:*", false},
    	{"go:x*", true},
    	{"export foo", true},
    	{"extern foo", true},
    	{"expert foo", false},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 22:03:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/legalize_tf_quant_test.cc

          } : (tensor<1xf32>, tensor<f32>, tensor<i32>) -> tensor<1x!tf_type.qint8>
          %1 = "tf.UniformDequantize"(%0, %scales, %zps) {
            quantization_axis = -1 : i64, quantization_min_val = -128 : i64, quantization_max_val = 127 : i64
          } : (tensor<1x!tf_type.qint8>, tensor<f32>, tensor<i32>) -> tensor<1xf32>
          func.return %1 : tensor<1xf32>
        }
      })mlir";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 18:43:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt

     * hint for further adapters to process.
     *
     * Types like ANY and CHOICE that don't have a consistent tag cannot use this.
     */
    internal data class BasicDerAdapter<T>(
      private val name: String,
      /** The tag class this adapter expects, or -1 to match any tag class. */
      val tagClass: Int,
      /** The tag this adapter expects, or -1 to match any tag. */
      val tag: Long,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #              , EmptyString, FromTo, DateFromTo, RangeOf, ...
    #              , (and prefix '!' means excluding, '%' means reviving)
    # table: table name (hint) or $$ALL$$
    # column: column name (hint) or $$CommonColumn$$ or $$VersionNo$$
    #
    # Example:
    # map:{
    #     # This means that String includes GreaterThan at MEMBER.MEMBER_ACCOUNT only
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.h

    // quantized. `signature_def_map` connects the signature keys to
    // `SignatureDef`s.
    //
    // Returns a non-OK status when the quantization is not successful.
    // LINT.IfChange
    absl::Status QuantizeWeightOnlyPtq(
        absl::string_view src_saved_model_path,
        absl::string_view dst_saved_model_path,
        ::stablehlo::quantization::QuantizationConfig quantization_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 12:18:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/ParallelismBuildOptions.java

                try {
                    int workerCount = Integer.parseInt(value);
                    if (workerCount < 1) {
                        origin.handleInvalidValue(value, HINT);
                    }
                    settings.setMaxWorkerCount(workerCount);
                } catch (NumberFormatException e) {
                    origin.handleInvalidValue(value, HINT);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelProblemUtils.java

    /**
     * Assists in the handling of model problems.
     *
     */
    public class ModelProblemUtils {
    
        /**
         * Creates a user-friendly source hint for the specified model.
         *
         * @param model The model to create a source hint for, may be {@code null}.
         * @return The user-friendly source hint, never {@code null}.
         */
        static String toSourceHint(Model model) {
            if (model == null) {
                return "";
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_activity_listener.h

    Status BroadcastOptimizationRemark(XlaOptimizationRemark optimization_remark);
    
    // LINT.IfChange
    // Called after TensorFlow realizes possible lost performance. The parameters in
    // this should match all of the values in the XlaOptimizationRemark proto.
    Status BroadcastOptimizationRemark(
        XlaOptimizationRemark::Warning optimization_warning,
        string debug_information);
    
    // LINT.ThenChange(//tensorflow/compiler/jit/xla_activity.proto)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 07 11:04:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  9. gradle.properties

    android.enableJetifier=true
    android.useAndroidX=true
    kotlin.mpp.stability.nowarn=true
    kotlin.js.compiler=ir
    kotlin.incremental.js.ir=true
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 09:58:21 UTC 2024
    - 343 bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    			return nil, 0
    		}
    
    		// Create new hints for extending this region.
    		hint := (*arenaHint)(h.arenaHintAlloc.alloc())
    		hint.addr, hint.down = uintptr(v), true
    		hint.next, mheap_.arenaHints = mheap_.arenaHints, hint
    		hint = (*arenaHint)(h.arenaHintAlloc.alloc())
    		hint.addr = uintptr(v) + size
    		hint.next, mheap_.arenaHints = mheap_.arenaHints, hint
    	}
    
    	// Check for bad pointers or pointers we can't use.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top