Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for narrower (0.15 sec)

  1. src/cmd/compile/internal/types2/check_test.go

    	testDirFiles(t, "../../../../internal/types/testdata/check", 50, false) // TODO(gri) narrow column tolerance
    }
    func TestSpec(t *testing.T) { testDirFiles(t, "../../../../internal/types/testdata/spec", 20, false) } // TODO(gri) narrow column tolerance
    func TestExamples(t *testing.T) {
    	testDirFiles(t, "../../../../internal/types/testdata/examples", 125, false)
    } // TODO(gri) narrow column tolerance
    func TestFixedbugs(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

     * not have a (declared) member scope.
     *
     * Members declared by the enum class and overridden in the enum entry's body will be accessible, of course, but only the base version
     * declared in the enum class. For example, a narrowed return type of an overridden member in an enum entry's body will not be visible
     * outside the body.
     *
     * #### Example
     *
     * ```kotlin
     * enum class E {
     *     A {
     *         val x: Int = 5
     *     }
     * }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

          // The initial quantization is used someplace else ... so it might be
          // reasonable for it to requantized for another purpose.
          // Ideally would want to still check whether requantization narrows
          // rather than widens the representation.
          return;
        }
    
        // Invariant:
        // isa<quantfork::QuantizeCastOp>(dq_arg.getDefiningOp()) -->
        // getdq_arg.getType() != q_op.getResult().getType()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

          // The initial quantization is used someplace else ... so it might be
          // reasonable for it to requantized for another purpose.
          // Ideally would want to still check whether requantization narrows
          // rather than widens the representation.
          return;
        }
    
        // Invariant:
        // isa<quantfork::QuantizeCastOp>(dq_arg.getDefiningOp()) -->
        // getdq_arg.getType() != q_op.getResult().getType()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	klog.Infof("Starting cluster_authentication_trust_controller controller")
    	defer klog.Infof("Shutting down cluster_authentication_trust_controller controller")
    
    	// we have a personal informer that is narrowly scoped, start it.
    	go c.kubeSystemConfigMapInformer.Run(ctx.Done())
    
    	// wait for your secondary caches to fill before starting your work
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

          return absl::InvalidArgumentError(
              "Quantized tensors must be stored as integers");
        }
        storage_type = mlir::cast<mlir::IntegerType>(raw_elem_type);
      }
    
      // TFlite uses narrow-range [u]int8 for constant buffers of quantized weights.
      // Since we don't know which ones are weights, we represent this optimization
      // as a change in the storage bounds for the type for all constants of this
      // type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            javaClassFile("compile/test/Person.class").exists()
            javaClassFile("compile/test/Person2.class").exists()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/5750")
        def "include narrows down source files to compile"() {
            given:
            goodCode()
    
            and:
            file('src/main/java/Bar.java') << 'class Bar {}'
            buildFile << 'compileJava.include "**/Person*.java"'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                 "or tf.relu6 to narrow the tensor range. Range: "
              << range << ", bit width: " << num_bits;
        }
        if (std::abs(max - min) < kNearZeroTolerance) {
          op.emitWarning() << "Tensor range (" << min << ", " << max
                           << ") is too narrow and it might cause overflow. "
                              "Expanding range symmetrically by "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return nil, errors.New("no program header matches mapping info")
    	}
    	if len(headers) == 1 {
    		return headers[0], nil
    	}
    
    	// Use the file offset corresponding to the address to symbolize, to narrow
    	// down the header.
    	return elfexec.HeaderForFileOffset(headers, addr-m.start+m.offset)
    }
    
    // file implements the binutils.ObjFile interface.
    type file struct {
    	b       *binrep
    	name    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_test.go

    	}
    
    	// Perform a blocking read on the pipe.
    	var wg sync.WaitGroup
    	ready := make(chan bool)
    	wg.Add(1)
    	go func() {
    		data := make([]byte, 1)
    
    		// To narrow the window we have to wait for this
    		// goroutine to block in read, synchronize just before
    		// calling read.
    		ready <- true
    
    		// We use syscall.Read directly to avoid the poller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top