Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 422 for zout (0.11 sec)

  1. src/crypto/internal/nistec/p256_asm_amd64.s

    	LDacc (u2)
    	CALL p256SubInternal(SB)
    
    	LDt (r)
    	CALL p256MulInternal(SB)
    
    	LDt (s2)
    	CALL p256SubInternal(SB)
    	ST (yout)
    
    	MOVOU xout(16*0), X0
    	MOVOU xout(16*1), X1
    	MOVOU yout(16*0), X2
    	MOVOU yout(16*1), X3
    	MOVOU zout(16*0), X4
    	MOVOU zout(16*1), X5
    	// Finally output the result
    	MOVQ rptr, AX
    	MOVQ $0, rptr
    	MOVOU X0, (16*0)(AX)
    	MOVOU X1, (16*1)(AX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  2. src/testing/quick/quick.go

    		err := arbitraryValues(arguments, xType, config, rand)
    		if err != nil {
    			return err
    		}
    
    		xOut := toInterfaces(x.Call(arguments))
    		yOut := toInterfaces(y.Call(arguments))
    
    		if !reflect.DeepEqual(xOut, yOut) {
    			return &CheckEqualError{CheckError{i + 1, toInterfaces(arguments)}, xOut, yOut}
    		}
    	}
    
    	return nil
    }
    
    // arbitraryValues writes Values to args such that args contains Values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.mlir

      // CHECK: %[[CUSTOM_AGGREGATOR_2:.*]], {{.*}}, {{.*}}, {{.*}} = "tf.CustomAggregator"(%[[XLA_CALL_MODULE:.*]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_weight_param.mlir

      %cst = "tf.Const"() {value = dense<3.000000e-01> : tensor<2x3x3x2xf32>} : () -> tensor<2x3x3x2xf32>
      %0 = "tf.XlaCallModule"(%arg0, %cst) {
        Sout = [#tf_type.shape<1x2x2x2>], _entry_function = @composite_conv_fn,
        _original_entry_function = "composite_conv_fn",
        _stablehlo_module_attrs = {}, _quantization_method = "weight_only_ptq { }",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradients.cc

      std::unordered_map<Node*, int> requested_grads;
      for (const Output& nout : inputs_) {
        if (pending_[nout.node()->id()] > 0) {
          DCHECK_GT(nout.node()->num_outputs(), 1);
          int idx = input_nodes_[nout];
          DCHECK(((*grad_outputs_)[idx].node() == nullptr));
          TF_RETURN_IF_ERROR(SumGradients(nout, &(*grad_outputs_)[idx]));
          ++requested_grads[nout.node()];
        }
      }
      for (const auto& p : requested_grads) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. docs/fr/docs/features.md

    ### Court
    
    Des **valeurs par défaut** sont définies pour tout, des configurations optionnelles sont présentent partout. Tous ces paramètres peuvent être ajustés afin de faire ce que vous voulez et définir l'API dont vous avez besoin.
    
    Mais, **tout fonctionne** par défaut.
    
    ### Validation
    
    * Validation pour la plupart (ou tous?) les **types de données** Python incluant:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

    tfr.func @tf__my_identity(%value: !tfr.tensor) -> !tfr.tensor {
      tfr.return %value : !tfr.tensor
    }
    
    tfr.func @tf__my_cast(%value: !tfr.tensor, %tout: !tfr.attr{tfr.name="Tout"}) -> !tfr.tensor {
      %0 = tfr.call @tf__risc_cast(%value, %tout) : (!tfr.tensor, !tfr.attr) -> !tfr.tensor
      tfr.return %0 : !tfr.tensor
    }
    
    tfr.func @tf__my_rsqrt(%value: !tfr.tensor) -> !tfr.tensor {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec_test.cc

    // Non-quantizable ops: quantize/dequantize ops
    constexpr absl::string_view kModuleCompositeSameScale = R"mlir(
      module {
        func.func @same_scale_after_composite() -> tensor<3x1xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. src/cmd/gofmt/gofmt.go

    }
    
    // newSequencer returns a sequencer that allows concurrent tasks up to maxWeight
    // and writes tasks' output to out and err.
    func newSequencer(maxWeight int64, out, err io.Writer) *sequencer {
    	sem := semaphore.NewWeighted(maxWeight)
    	prev := make(chan *reporterState, 1)
    	prev <- &reporterState{out: out, err: err}
    	return &sequencer{
    		maxWeight: maxWeight,
    		sem:       sem,
    		prev:      prev,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            """
    
            librarySourceFile.replace("cout << message", "cout << PREFIX << message")
    
            def libDefsHeader = file("library/src/main/headers/local_defs.h")
            libDefsHeader << """
                #define PREFIX "LOG: "
            """
    
            then:
            succeeds installApp
            install.exec().out == "LOG: [info] hello world"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top