Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 224 for i8rand (0.1 sec)

  1. src/math/rand/gen_cooked.go

    			rngVec[i] = u
    		}
    	}
    }
    
    func vrand() int64 {
    	rngTap--
    	if rngTap < 0 {
    		rngTap += length
    	}
    	rngFeed--
    	if rngFeed < 0 {
    		rngFeed += length
    	}
    	x := (rngVec[rngFeed] + rngVec[rngTap])
    	rngVec[rngFeed] = x
    	return x
    }
    
    func main() {
    	srand(1)
    	for i := uint64(0); i < 7.8e12; i++ {
    		vrand()
    	}
    	fmt.Printf("rngVec after 7.8e12 calls to vrand:\n%#v\n", rngVec)
    	for i := range rngVec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/wasm/anames.go

    	"I32Mul",
    	"I32DivS",
    	"I32DivU",
    	"I32RemS",
    	"I32RemU",
    	"I32And",
    	"I32Or",
    	"I32Xor",
    	"I32Shl",
    	"I32ShrS",
    	"I32ShrU",
    	"I32Rotl",
    	"I32Rotr",
    	"I64Clz",
    	"I64Ctz",
    	"I64Popcnt",
    	"I64Add",
    	"I64Sub",
    	"I64Mul",
    	"I64DivS",
    	"I64DivU",
    	"I64RemS",
    	"I64RemU",
    	"I64And",
    	"I64Or",
    	"I64Xor",
    	"I64Shl",
    	"I64ShrS",
    	"I64ShrU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/math/rand/v2/rand.go

    }
    
    // New returns a new Rand that uses random values from src
    // to generate other random values.
    func New(src Source) *Rand {
    	return &Rand{src: src}
    }
    
    // Int64 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (r *Rand) Int64() int64 { return int64(r.src.Uint64() &^ (1 << 63)) }
    
    // Uint32 returns a pseudo-random 32-bit value as a uint32.
    func (r *Rand) Uint32() uint32 { return uint32(r.src.Uint64() >> 32) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      // Collect operands for the new merged island.
      island_operands_and_results.operands.clear();
      for (IslandOp island : merged_island.islands)
        island_operands_and_results.operands.insert(island.operand_begin(),
                                                    island.operand_end());
      for (IslandOp island : merged_island.islands)
        island_operands_and_results.operands.remove(island.getControl());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        // CHECK: %[[ADD:.*]], %{{.*}} = tf_executor.island wraps "tf.Add"(%[[ARG_2]], %[[ARG_3]]) : (tensor<f32>, tensor<f32>) -> tensor<f32>
        %add, %add_control = tf_executor.island wraps "tf.Add"(%arg2, %arg3) : (tensor<f32>, tensor<f32>) -> tensor<f32>
        // CHECK: %[[MUL:.*]], %{{.*}} = tf_executor.island wraps "tf.Mul"(%[[ARG_2]], %[[ARG_3]]) : (tensor<f32>, tensor<f32>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

        }
        tf_executor.NextIteration.Sink[%source#1] %island#0 : tensor<*xi32>
        tf_executor.fetch %island#0 : tensor<*xi32>
      }
      func.return
    }
    
    // CHECK: %[[CONTROL:[^ ,]*]] = tf_executor.island wraps "tf.Print"
    // CHECK: tf_executor.LoopCond {{.*}}, %[[CONTROL]]
    func.func @loop_cond_control_input() {
      tf_executor.graph {
        %island:2 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands.mlir

    }
    
    // CHECK: [[OUTPUT_0:%.*]], {{%.*}} = tf_executor.island wraps "tf.opA"() {_parallel_execution_ids = "p0:0"}
    // CHECK: [[OUTPUT_1:%.*]], {{%.*}} = tf_executor.island wraps "tf.opB"([[OUTPUT_0:%.*]]) {_parallel_execution_ids = "p0:0"}
    // CHECK: [[OUTPUT_2:%.*]], {{%.*}} = tf_executor.island wraps "tf.opC"() {_parallel_execution_ids = "p0:1"}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

        // CHECK: %[[control:.*]] = tf_executor.island wraps "tf.A"()
        tf_executor.island wraps "tf.A"() : () -> ()
        // CHECK-NEXT: %[[control_2:.*]] = tf_executor.island(%[[control]]) wraps "tf.B"()
        tf_executor.island wraps "tf.B"() {_parallel_execution_ids = "r1:1"} : () -> ()
        // CHECK-NEXT: %[[control_3:.*]] = tf_executor.island(%[[control_2]]) wraps "tf.C"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

      %0:2 = tf_executor.graph {
        %control = tf_executor.island() wraps "tf.TPUReplicateMetadata"() {_tpu_replicate = "cluster", device = "/device:TPU:0", num_replicas = 2, topology = "topology"} : () -> ()
        %ri, %c0 = tf_executor.island wraps "tf.TPUReplicatedInput"(%arg0, %arg1) {index = 1 : i64, is_mirrored_variable = false, is_packed = false} : (tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

        }
        tf_executor.fetch %island#0, %island#1, %island#2 : tensor<i32>, !tf_res, !tf_res
      }
      func.return %graph#0, %graph#1, %graph#2: tensor<i32>, !tf_res, !tf_res
    }
    
    // CHECK-LABEL: func @whileregion_cond
    func.func @whileregion_cond(%arg0: tensor<i32>, %arg1: !tf_res, %arg2: !tf_res) -> tensor<i1> {
      %graph = tf_executor.graph {
        // CHECK: tf_executor.island
        %island:2 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
Back to top