Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for rounds (0.17 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	XORQ itr2, itr2
    	MOVQ inl, itr1
    	CMPQ itr1, $16
    	JB   openSSETail64LoopB
    
    openSSETail64LoopA:
    	// Perform ChaCha rounds, while hashing the remaining input
    	polyAdd(0(inp)(itr2*1))
    	polyMul
    	SUBQ $16, itr1
    
    openSSETail64LoopB:
    	ADDQ          $16, itr2
    	chachaQR(A0, B0, C0, D0, T0)
    	shiftB0Left;  shiftC0Left; shiftD0Left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// ROUNDSD rounds arg0 to an integer depending on auxint
    		// 0 means math.RoundToEven, 1 means math.Floor, 2 math.Ceil, 3 math.Trunc
    		// (The result is still a float64.)
    		// ROUNDSD instruction is only guaraneteed to be available if GOAMD64>=v2.
    		// For GOAMD64<v2, any use must be preceded by a successful check of runtime.x86HasSSE41.
    		{name: "ROUNDSD", argLength: 1, reg: fp11, aux: "Int8", asm: "ROUNDSD"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. doc/go1.17_spec.html

    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
    0i                  int         0 is an integer value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TensorOf<[F32, I32, I64, I1, I8, UI8]>:$output
      );
    
      let hasOptions = 1;
    }
    
    def TFL_RoundOp: TFL_Op<"round", [
        Pure,
        TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Round operator";
    
      let description = [{
    Rounds the values of a tensor to the nearest integer, element-wise.
      }];
    
      let arguments = (ins
        TFL_FpTensor:$x
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          os << "\n";
        }
      }
    }
    
    // For exported functions with bound inputs, rewrite the function
    // signature to match the requirements of tf_saved_model bound input args.
    //
    // The raw imported functions have `tensor<*x!tf_type.resource>` as the type for
    // mutable bound inputs and `tensor<...>` as the type for immutable
    // bound inputs. Here we canonicalize both of them into
    // `tensor<!tf_type.resource<tensor<...>>>`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    one finger; and the whole party at once crowded round her,
    calling out in a confused way, `Prizes! Prizes!'
    
      Alice had no idea what to do, and in despair she put her hand
    in her pocket, and pulled out a box of comfits, (luckily the salt
    water had not got into it), and handed them round as prizes.
    There was exactly one a-piece all round.
    
      `But she must have a prize herself, you know,' said the Mouse.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/istio-service-dashboard.json

          },
          "pluginVersion": "10.1.5",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "round(sum(irate(istio_requests_total{reporter=~\"$qrep\",destination_service=~\"$service\"}[5m])), 0.001)",
              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A",
              "step": 4
            }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

    "mode":"multi","sort":"none"}},"pluginVersion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"(sum(irate(container_cpu_usage_seconds_total{pod=~\"istio-ingressgateway-.*\",container=\"istio-proxy\"}[1m])) / (round(sum(irate(istio_requests_total{source_workload=\"istio-ingressgateway\", reporter=\"source\"}[1m])), 0.001)/1000))","format":"time_series","hide":false,"intervalFactor":1,"legendFormat":"istio-ingressgateway","refId":"A"},{"datasource":{"type":"pr...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/asm7.go

    		// the constant pool across a cache line.
    		c.pool.size = roundUp(c.pool.size, 8)
    	}
    	c.pool.size += uint32(sz)
    	p.Pool = t
    }
    
    // roundUp rounds up x to "to".
    func roundUp(x, to uint32) uint32 {
    	if to == 0 || to&(to-1) != 0 {
    		log.Fatalf("rounded up to a value that is not a power of 2: %d\n", to)
    	}
    	return (x + to - 1) &^ (to - 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  10. internal/s3select/csv/testdata/testdata.zip

    3802 1332 232 1 Manhattan 023200 1023200 E MN03 Central Harlem North-Polo Grounds 3803 3389529 2 2014-03-25 13:13:26 2014-03-25 13:15:03 N 1 -73.953834533691406 40.811191558837891 -73.938751220703125 40.813190460205078 1 0.30 3.5 0 0.5 0 0 4 2 1 166 42 green 0.00 0.0 0.0 39 26 5.82 1312 209.01 1 Manhattan 020901 1020901 E MN09 Morningside Heights 3802 1596 212 1 Manhattan 021200 1021200 I MN03 Central Harlem North-Polo Grounds 3803 3389530 2 2014-03-20 16:11:35 2014-03-20 16:52:09 N 1 -73.953887939453125...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 111.6K bytes
    - Viewed (0)
Back to top