Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 126 of 126 for func_20 (0.13 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    func encodeR4(as obj.As, rs1, rs2, rs3, rd, funct3, funct2 uint32) uint32 {
    	enc := encode(as)
    	if enc == nil {
    		panic("encodeR4: could not encode instruction")
    	}
    	if enc.rs2 != 0 {
    		panic("encodeR4: instruction uses rs2")
    	}
    	funct2 |= enc.funct7
    	if funct2&^3 != 0 {
    		panic("encodeR4: funct2 requires more than 2 bits")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                   RewriteQuantizedSelectOp, RewriteQuantizedSliceOp,
                   RewriteQuantizedTransposeOp>(&ctx);
    
      if (failed(applyPatternsAndFoldGreedily(func_op, std::move(patterns)))) {
        func_op.emitError() << "Failed to convert stablehlo ops with uniform "
                               "quantized types to tflite ops.";
        signalPassFailure();
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

          finished_ = true;
        }
      }
    
      virtual void Run() {
        if (thread_can_start_ != NULL)
          thread_can_start_->WaitForNotification();
        func_(param_);
      }
    
     private:
      const UserThreadFunc func_;  // User-supplied thread function.
      const T param_;  // User-supplied parameter to the thread function.
      // When non-NULL, used to block execution until the controller thread
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

          finished_ = true;
        }
      }
    
      virtual void Run() {
        if (thread_can_start_ != NULL)
          thread_can_start_->WaitForNotification();
        func_(param_);
      }
    
     private:
      const UserThreadFunc func_;  // User-supplied thread function.
      const T param_;  // User-supplied parameter to the thread function.
      // When non-NULL, used to block execution until the controller thread
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    	if newContentions != contentions || newDelay != delay {
    		t.Fatalf("sample value changed: got [%d, %d], want [%d, %d]", newContentions, newDelay, contentions, delay)
    	}
    }
    
    func func1(c chan int) { <-c }
    func func2(c chan int) { <-c }
    func func3(c chan int) { <-c }
    func func4(c chan int) { <-c }
    
    func TestGoroutineCounts(t *testing.T) {
    	// Setting GOMAXPROCS to 1 ensures we can force all goroutines to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (!func) {
        return emitError("'f' attribute refers to an undefined function: ")
               << func_name;
      }
    
      FunctionType func_ty = func.getFunctionType();
      int func_arg_count = func_ty.getNumInputs();
      int arg_count = getArgs().size();
    
      if (arg_count != func_arg_count) {
        return emitError() << "argument count mismatch: 'args' has " << arg_count
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top