Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for Brad (0.07 sec)

  1. tensorflow/cc/framework/gradients_test.cc

        TF_ASSERT_OK(scope.status());
    
        // Construct grad inputs.
        auto dx = Const(scope, 4, {4, 2});
        auto dy = Const(scope, 5, {4, 2});
        auto dz = Const(scope, 6, {4, 2});
    
        if (expected) {
          // Construct backward graph.
          // NOTE: We should only expect the grad function for unpack in the
          // gradients graph, based on the requested grad outputs.
          auto unpack_grad = Stack(scope, {dx, dy, dz});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  2. src/math/atanh_s390x.s

    TEXT    ·atanhAsm(SB), NOSPLIT, $0-16
    	FMOVD   x+0(FP), F0
    	MOVD    $·atanhrodataL10<>+0(SB), R5
    	LGDR    F0, R1
    	WORD    $0xC0393FEF //iilf  %r3,1072693247
    	BYTE    $0xFF
    	BYTE    $0xFF
    	SRAD    $32, R1
    	WORD    $0xB9170021 //llgtr %r2,%r1
    	MOVW    R2, R6
    	MOVW    R3, R7
    	CMPBGT  R6, R7, L2
    	WORD    $0xC0392FFF //iilf  %r3,805306367
    	BYTE    $0xFF
    	BYTE    $0xFF
    	MOVW    R2, R6
    	MOVW    R3, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/math/log_s390x.s

    TEXT	·logAsm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	MOVD	$·logrodataL21<>+0(SB), R9
    	MOVH	$0x8006, R4
    	LGDR	F0, R1
    	MOVD	$0x3FF0000000000000, R6
    	SRAD	$48, R1, R1
    	MOVD	$0x40F03E8000000000, R8
    	SUBW	R1, R4
    	RISBGZ	$32, $59, $0, R4, R2
    	RISBGN	$0, $15, $48, R2, R6
    	RISBGN	$16, $31, $32, R2, R8
    	MOVW	R1, R7
    	CMPBGT	R7, $22, L17
    	LTDBR	F0, F0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    func.func @max_pool_grad_valid(%orig_input: tensor<10x24x24x64xf32>, %orig_output: tensor<10x12x12x64xf32>, %grad: tensor<10x12x12x64xf32>) -> tensor<10x24x24x64xf32> {
      // CHECK: %[[ZERO:.*]] = mhlo.constant dense<0.000000e+00> : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. src/math/cbrt_s390x.s

    TEXT	·cbrtAsm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	MOVD	$·cbrtrodataL9<>+0(SB), R9
    	LGDR	F0, R2
    	WORD	$0xC039000F	//iilf	%r3,1048575
    	BYTE	$0xFF
    	BYTE	$0xFF
    	SRAD	$32, R2
    	WORD	$0xB9170012	//llgtr	%r1,%r2
    	MOVW	R1, R6
    	MOVW	R3, R7
    	CMPBLE	R6, R7, L2
    	WORD	$0xC0397FEF	//iilf	%r3,2146435071
    	BYTE	$0xFF
    	BYTE	$0xFF
    	MOVW	R3, R7
    	CMPBLE	R6, R7, L8
    L1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.9K bytes
    - Viewed (0)
  6. test/codegen/arithmetic.go

    	// arm64:"TST\t[$]63",-"UDIV",-"ASR",-"AND"
    	// ppc64x:"ANDCC",-"RLDICL",-"SRAD",-"CMP"
    	a := n1%64 == 0 // signed divisible
    
    	// 386:"TESTL\t[$]63",-"DIVL",-"SHRL"
    	// amd64:"TESTQ\t[$]63",-"DIVQ",-"SHRQ"
    	// arm:"AND\t[$]63",-".*udiv",-"SRA"
    	// arm64:"TST\t[$]63",-"UDIV",-"ASR",-"AND"
    	// ppc64x:"ANDCC",-"RLDICL",-"SRAD",-"CMP"
    	b := n2%64 != 0 // signed indivisible
    
    	return a, b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return true
    	case OR, ORCC, ORC, ORCCC, AND, ANDCC, ANDC, ANDCCC, XOR, XORCC, NAND, NANDCC, EQV, EQVCC, NOR, NORCC:
    		return true
    	case SLW, SLWCC, SLD, SLDCC, SRW, SRAW, SRWCC, SRAWCC, SRD, SRDCC, SRAD, SRADCC:
    		return true
    	}
    	return false
    }
    
    // revCondMap maps a conditional register bit to its inverse, if possible.
    var revCondMap = map[string]string{
    	"LT": "GE", "GT": "LE", "EQ": "NE",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    // Adds a copy of function `func` and optionally its gradient function `grad`
    // to `g`. Once `func`/`grad` is added to `g`, it can be called by creating
    // an operation using the function's name.
    // Any changes to `func`/`grad` (including deleting it) done after this method
    // returns, won't affect the copy of `func`/`grad` in `g`.
    // If `func` or `grad` are already in `g`, TF_GraphCopyFunction has no
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. tensorflow/c/c_test_util.cc

    std::vector<std::pair<string, string>> GetGradDefs(
        const tensorflow::GraphDef& graph_def) {
      std::vector<std::pair<string, string>> grads;
      for (const tensorflow::GradientDef& grad : graph_def.library().gradient()) {
        grads.emplace_back(grad.function_name(), grad.gradient_func());
      }
      std::sort(grads.begin(), grads.end());
      return grads;
    }
    
    std::vector<string> GetFuncNames(const tensorflow::GraphDef& graph_def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

                                              grad_func, flib_def,
                                              visited_functions));
        GradientDef grad;
        grad.set_function_name(function_name);
        grad.set_gradient_func(grad_func.getName().str());
        TF_RETURN_IF_ERROR(flib_def->AddGradientDef(grad));
      }
    
      auto stateful_string = mlir::TF::TensorFlowDialect::GetStatefulAttrName();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top