Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,161 for INC (0.03 sec)

  1. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      // Internal helper methods
    
      /** Circularly increment i. */
      final int inc(int i) {
        return (++i == items.length) ? 0 : i;
      }
    
      /**
       * Inserts element at current put position, advances, and signals. Call only when occupying
       * monitor.
       */
      private void insert(E x) {
        items[putIndex] = x;
        putIndex = inc(putIndex);
        ++count;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/BUILD

                ],
                "sparsecore_passes.h.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "sparsecore_passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    cc_library(
        name = "sparsecore_passes",
        hdrs = [
            "sparsecore_passes.h",
        ],
        textual_hdrs = [
            "sparsecore_passes.h.inc",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h

    #include "mlir/Interfaces/SideEffectInterfaces.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOpsDialect.h.inc"
    #define GET_OP_CLASSES
    
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 14:49:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/crypto/cipher/ctr_test.go

    )
    
    type noopBlock int
    
    func (b noopBlock) BlockSize() int        { return int(b) }
    func (noopBlock) Encrypt(dst, src []byte) { copy(dst, src) }
    func (noopBlock) Decrypt(dst, src []byte) { copy(dst, src) }
    
    func inc(b []byte) {
    	for i := len(b) - 1; i >= 0; i++ {
    		b[i]++
    		if b[i] != 0 {
    			break
    		}
    	}
    }
    
    func xor(a, b []byte) {
    	for i := range a {
    		a[i] ^= b[i]
    	}
    }
    
    func TestCTR(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 21:38:36 UTC 2015
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/optimize_graph.cc

    namespace mlir::quant::stablehlo {
    
    #define GEN_PASS_DEF_OPTIMIZEGRAPHPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    class OptimizeGraphPass
        : public impl::OptimizeGraphPassBase<OptimizeGraphPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OptimizeGraphPass)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 21 20:11:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/runtime_verify.cc

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    
    namespace mlir {
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_interface.h.inc"
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_RUNTIMEVERIFYPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // This pass verifies that the TFL ops meet the TFL runtime constraints.
    class RuntimeVerifyPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/amd64/l.go

    // Inferno utils/6l/l.h
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/l.h
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 03:02:35 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/x86/l.go

    // Inferno utils/8l/l.h
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/8l/l.h
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/metrics.go

    	if err == nil {
    		transformerLatencies.WithLabelValues(transformationType, transformerPrefix).Observe(elapsed.Seconds())
    	}
    }
    
    // RecordCacheMiss records a miss on Key Encryption Key(KEK) - call to KMS was required to decrypt KEK.
    func RecordCacheMiss() {
    	envelopeTransformationCacheMissTotal.Inc()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/licenses.adoc

    // Copyright (C) 2023 Gradle, Inc.
    //
    // Licensed under the Creative Commons Attribution-Noncommercial-ShareAlike 4.0 International License.;
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //      https://creativecommons.org/licenses/by-nc-sa/4.0/
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top