Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for linear_1 (0.1 sec)

  1. tensorflow/cc/framework/scope_test.cc

      Scope root = Scope::NewRootScope();
      const auto names1 = LinearOp(root);
    
      EXPECT_EQ(names1[0], "linear/mul");
      EXPECT_EQ(names1[1], "linear/bias_add");
      EXPECT_EQ(names1[2], "linear/c1");
      EXPECT_EQ(names1[3], "linear/mul_1");
      EXPECT_EQ(names1[4], "linear");
    
      EXPECT_EQ(root.GetUniqueNameForOp("linear"), "linear_1");
    
      const auto names2 = LinearOp(root);
    
      EXPECT_EQ(names2[0], "linear_2/mul");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Khmer <type 1>;
    var Khojki <type 1>;
    var Khudawadi <type 1>;
    var L <type 1>;
    var Lao <type 1>;
    var Latin <type 1>;
    var Lepcha <type 1>;
    var Letter <type 1>;
    var Limbu <type 1>;
    var Linear_A <type 1>;
    var Linear_B <type 1>;
    var Lisu <type 1>;
    var Ll <type 1>;
    var Lm <type 1>;
    var Lo <type 1>;
    var Logical_Order_Exception <type 1>;
    var Lower <type 1>;
    const LowerCase = 1 ;
    var Lt <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  3. src/runtime/histogram.go

    // nanoseconds.
    //
    // The accuracy and range of the histogram is defined by the
    // timeHistSubBucketBits and timeHistNumBuckets constants.
    //
    // It is an HDR histogram with exponentially-distributed
    // buckets and linearly distributed sub-buckets.
    //
    // The histogram is safe for concurrent reads and writes.
    type timeHistogram struct {
    	counts [timeHistNumBuckets * timeHistNumSubBuckets]atomic.Uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/SmallCharMatcher.java

    import com.google.common.base.CharMatcher.NamedFastMatcher;
    import java.util.BitSet;
    
    /**
     * An immutable version of CharMatcher for smallish sets of characters that uses a hash table with
     * linear probing to check for matches.
     *
     * @author Christopher Swenson
     */
    @GwtIncompatible // no precomputation is done in GWT
    @ElementTypesAreNonnullByDefault
    final class SmallCharMatcher extends NamedFastMatcher {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/SmallCharMatcher.java

    import com.google.common.base.CharMatcher.NamedFastMatcher;
    import java.util.BitSet;
    
    /**
     * An immutable version of CharMatcher for smallish sets of characters that uses a hash table with
     * linear probing to check for matches.
     *
     * @author Christopher Swenson
     */
    @GwtIncompatible // no precomputation is done in GWT
    @ElementTypesAreNonnullByDefault
    final class SmallCharMatcher extends NamedFastMatcher {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/helper/shape_score.go

    type FunctionShapePoint struct {
    	// Utilization is function argument.
    	Utilization int64
    	// Score is function value.
    	Score int64
    }
    
    // BuildBrokenLinearFunction creates a function which is built using linear segments. Segments are defined via shape array.
    // Shape[i].Utilization slice represents points on "Utilization" axis where different segments meet.
    // Shape[i].Score represents function values at meeting points.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/runtime/symtab_test.go

    	l39 = b
    	l40 = c
    }
    
    func TestLineNumber(t *testing.T) {
    	trythis()
    	for _, test := range []struct {
    		name string
    		val  int
    		want int
    	}{
    		{"firstLine", firstLine, 0},
    		{"lineVar1", lineVar1, 2},
    		{"lineVar2a", lineVar2a, 3},
    		{"lineVar2b", lineVar2b, 3},
    		{"compLit[0].lineA", compLit[0].lineA, 9},
    		{"compLit[0].lineB", compLit[0].lineB, 9},
    		{"compLit[1].lineA", compLit[1].lineA, 12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. src/runtime/fastlog2.go

    // uses a very rough approximation using the float64 exponent and the
    // first 25 bits of the mantissa. The top 5 bits of the mantissa are
    // used to load limits from a table of constants and the rest are used
    // to scale linearly between them.
    func fastlog2(x float64) float64 {
    	const fastlogScaleBits = 20
    	const fastlogScaleRatio = 1.0 / (1 << fastlogScaleBits)
    
    	xBits := float64bits(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/nn_ops.h

    // Computes rectified linear gradients for a Relu operation.
    Status ReluGrad(AbstractContext* ctx, AbstractTensorHandle* const gradients,
                    AbstractTensorHandle* const features,
                    AbstractTensorHandle** backprops, const char* name = nullptr,
                    const char* raw_device_name = nullptr);
    
    // Computes rectified linear: `max(features, 0)`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. guava/javadoc-link/checker-framework/package-list

    org.checkerframework.checker.initialization
    org.checkerframework.checker.initialization.qual
    org.checkerframework.checker.interning
    org.checkerframework.checker.interning.qual
    org.checkerframework.checker.linear
    org.checkerframework.checker.linear.qual
    org.checkerframework.checker.lock
    org.checkerframework.checker.lock.qual
    org.checkerframework.checker.nullness
    org.checkerframework.checker.nullness.compatqual
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
Back to top