Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for Approximates (0.4 sec)

  1. src/math/big/natdiv.go

    the future we will make it work like the alternative, to avoid a special case
    in the final iteration.
    
    Either way, each step is a 3-by-2-wide-digit division approximated first by
    a 2-by-1-wide-digit division, just as we did for regular digits in long division.
    Because the actual answer we want is a 3-by-2-wide-digit division, instead of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    }
    
    // stop stops a traceAdvancer and blocks until it exits.
    func (s *traceAdvancerState) stop() {
    	s.timer.wake()
    	<-s.done
    	close(s.done)
    	s.timer.close()
    }
    
    // traceAdvancePeriod is the approximate period between
    // new generations.
    const defaultTraceAdvancePeriod = 1e9 // 1 second.
    
    // wakeableSleep manages a wakeable goroutine sleep.
    //
    // Users of this type must call init before first use and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	// maxPagesPerPhysPage is the maximum number of supported runtime pages per
    	// physical page, based on maxPhysPageSize.
    	maxPagesPerPhysPage = maxPhysPageSize / pageSize
    
    	// scavengeCostRatio is the approximate ratio between the costs of using previously
    	// scavenged memory and scavenging memory.
    	//
    	// For most systems the cost of scavenging greatly outweighs the costs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      typedef GeluOptions TableType;
      bool approximate = false;
    };
    
    struct GeluOptions FLATBUFFERS_FINAL_CLASS : private ::flatbuffers::Table {
      typedef GeluOptionsT NativeTableType;
      typedef GeluOptionsBuilder Builder;
      enum FlatBuffersVTableOffset FLATBUFFERS_VTABLE_UNDERLYING_TYPE {
        VT_APPROXIMATE = 4
      };
      bool approximate() const {
        return GetField<uint8_t>(VT_APPROXIMATE, 0) != 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    func canMergeLoadClobber(target, load, x *Value) bool {
    	// The register containing x is going to get clobbered.
    	// Don't merge if we still need the value of x.
    	// We don't have liveness information here, but we can
    	// approximate x dying with:
    	//  1) target is x's only use.
    	//  2) target is not in a deeper loop than x.
    	if x.Uses != 1 {
    		return false
    	}
    	loopnest := x.Block.Func.loopnest()
    	loopnest.calculateDepths()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %4 = "tfl.mul"(%0, %3) {fused_activation_function = "NONE"} : (tensor<3xf32>, tensor<3xf32>) -> tensor<3xf32>
      func.return %4 : tensor<3xf32>
    
    // CHECK-LABEL:gelu
    // CHECK: "tfl.gelu"(%arg0) <{approximate = false}> : (tensor<3xf32>) -> tensor<3xf32>
    }
    
    func.func @gelu_no_match(%arg0: tensor<3xf32>) -> tensor<3xf32> {
      %cst = arith.constant dense<0.707106769> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    // CHECK-LABEL: testGelu
    func.func @testGelu(%arg0: tensor<1x2x3x4x5xf32>) -> tensor<1x2x3x4x5xf32> {
      // CHECK: "tfl.gelu"(%arg0)
      %0 = "tfl.gelu"(%arg0) {approximate = false}: (tensor<1x2x3x4x5xf32>) -> tensor<1x2x3x4x5xf32>
      func.return %0 : tensor<1x2x3x4x5xf32>
    }
    
    // -----
    
    // test invalid GELU input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    	// Envoy enforces a re2.max_program_size.error_level re2 program size is not the same as length,
    	// but it is always *larger* than length. Because goland does not have a way to evaluate the
    	// program size, we approximate by the length. To ensure that a program that is smaller than 1024
    	// length but larger than 1024 size does not enter the system, we program Envoy to allow very large
    	// regexs to avoid NACKs. See
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Computes GELU activation function element-wise.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, QI8, QUI8]>:$input,
        DefaultValuedOptionalAttr<BoolAttr, "false">:$approximate
      );
    
      let results = (outs TFL_TensorOf<[F32, QI8, QUI8]>:$output);
    
      let hasOptions = 1;
    }
    
    def TFL_DynamicUpdateSliceOp: TFL_Op<"dynamic_update_slice", [
        Pure,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-63530`](https://youtrack.jetbrains.com/issue/KT-63530) K2: Disable passing data flow info from in-place lambdas
    - [`KT-65377`](https://youtrack.jetbrains.com/issue/KT-65377) K2: "Argument type mismatch" caused by approximated captured type argument of generic type
    - [`KT-59400`](https://youtrack.jetbrains.com/issue/KT-59400) K2: Missing CANNOT_INFER_VISIBILITY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top