Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for lamp (0.09 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (start_indices_element_type.isInteger(32)) {
          signed_start_indices_element_type = rewriter.getI32Type();
        } else {
          signed_start_indices_element_type = rewriter.getI64Type();
        }
    
        // Clamp indices to [0, input_size - output_size]
        llvm::SmallVector<Value, 4> start_indices_vector;
        start_indices_vector.reserve(op.getStartIndices().size());
        Value clamp_min = rewriter.create<TF::ConstOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // Clamps the given `val`: returns `low` if `val` is less than `low`; returns
    // `high` if `high` is less than `val`; otherwise returns `val`.
    template <class T>
    constexpr const T &Clamp(const T &val, const T &low, const T &high) {
      assert(!(high < low));
      return (val < low) ? low : (high < val) ? high : val;
    }
    
    // Checks if the `index` bit of `val` is set.
    template <class T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

          <fields>
            <field>
              <name>includes</name>
              <version>3.0.0+</version>
              <description>
                A list of patterns to include, e.g. {@code **&amp;#47;*.xml}.
              </description>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	pollIntervalBase := time.Millisecond
    	nextPollInterval := func() time.Duration {
    		// Add 10% jitter.
    		interval := pollIntervalBase + time.Duration(rand.Intn(int(pollIntervalBase/10)))
    		// Double and clamp for next time.
    		pollIntervalBase *= 2
    		if pollIntervalBase > shutdownPollIntervalMax {
    			pollIntervalBase = shutdownPollIntervalMax
    		}
    		return interval
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          concatenated = rewriter.create<TFL::ConcatenationOp>(
              op->getLoc(), begin_type, start_indices, /*axis=*/0,
              /*fused_activation_function=*/rewriter.getStringAttr("NONE"));
        }
    
        // Clamp with lower limit.
        auto lower_limit_attr = DenseIntElementsAttr::get(
            single_element_type, {static_cast<int64_t>(0)});
        auto lower_limit_cst =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    		// dependency, and at the moment we don't try to instrument it
    		// for coverage. There isn't any technical reason why
    		// *_test.go files couldn't be instrumented, but it probably
    		// doesn't make much sense to lump together coverage metrics
    		// (ex: percent stmts covered) of *_test.go files with
    		// non-test Go code.
    		if len(p.GoFiles)+len(p.CgoFiles) == 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top