Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for cond_1 (0.15 sec)

  1. tensorflow/compiler/jit/tests/keras_imagenet_main.pbtxt

      }
    }
    node {
      name: "ConstantFoldingCtrl/bn_conv1/cond_1/switch_pred/_163_0"
      op: "Identity"
      input: "bn_conv1/cond_1/switch_pred/_163"
      device: "/job:localhost/replica:0/task:0/device:GPU:0"
      attr {
        key: "T"
        value {
          type: DT_BOOL
        }
      }
    }
    node {
      name: "ConstantFoldingCtrl/bn_conv1/cond_1/switch_pred/_163_1"
      op: "Identity"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.3M bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis_test.cc

                  "{(*iv_outer/cond_1:0 & "
                  "{#true,&,*iv_outer/cond_1:0}<outer_loop>),&,*iv_inner/"
                  "cond_1:0}<inner_loop;outer_loop>");
        EXPECT_EQ(predicate_map[ControlOutputFor(add0)],
                  "({(*iv_outer/cond:0 & "
                  "{#true,&,*iv_outer/cond:0}<outer_loop>),&,*iv_inner/"
                  "cond:0}<inner_loop;outer_loop> & {(*iv_outer/cond_1:0 & "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. test/fixedbugs/issue9110.go

    		time.Sleep(1 * time.Millisecond)
    
    		// pick up top sudog
    		var cond1 sync.Cond
    		var mu1 sync.Mutex
    		cond1.L = &mu1
    		go func() {
    			mu1.Lock()
    			cond1.Wait()
    			mu1.Unlock()
    		}()
    		time.Sleep(1 * time.Millisecond)
    
    		// pick up next sudog
    		var cond2 sync.Cond
    		var mu2 sync.Mutex
    		cond2.L = &mu2
    		go func() {
    			mu2.Lock()
    			cond2.Wait()
    			mu2.Unlock()
    		}()
    		time.Sleep(1 * time.Millisecond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/const1.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // constant conversions
    
    package const1
    
    import "math"
    
    const(
    	mi = ^int(0)
    	mu = ^uint(0)
    	mp = ^uintptr(0)
    
    	logSizeofInt     = uint(mi>>8&1 + mi>>16&1 + mi>>32&1)
    	logSizeofUint    = uint(mu>>8&1 + mu>>16&1 + mu>>32&1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output cond_a = ops::Placeholder(root.WithOpName("cond_a"), DT_BOOL);
      Output cond_b = ops::Placeholder(root.WithOpName("cond_b"), DT_BOOL);
    
      Output value = ops::Placeholder(root.WithOpName("value"), DT_FLOAT);
    
      ops::Switch switch_a(root.WithOpName("switch_a"), value, cond_a);
      ops::Switch switch_b(root.WithOpName("switch_b"), value, cond_b);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

      Operation* op_inst = op.getOperation();
      Location loc = op_inst->getLoc();
    
      OpBuilder builder(op_inst);
    
      // Lower the condition to a boolean value (i1).
      Value cond_i1 = LowerCondition(loc, op.getCond(), &builder);
      if (!cond_i1) return failure();
    
      // Split the basic block before the 'if'.  The new dest will be our merge
      // point.
      Block* orig_block = op_inst->getBlock();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. test/const1.go

    Robert Griesemer <******@****.***> 1606801129 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/conds.go

    // DefaultConds returns a set of broadly useful script conditions.
    //
    // Run the 'help' command within a script engine to view a list of the available
    // conditions.
    func DefaultConds() map[string]Cond {
    	conds := make(map[string]Cond)
    
    	conds["GOOS"] = PrefixCondition(
    		"runtime.GOOS == <suffix>",
    		func(_ *State, suffix string) (bool, error) {
    			if suffix == runtime.GOOS {
    				return true, nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

        Output input = ops::Const(s.WithOpName("const0"), true, {2});
        NameAttrList cond_fn;
        cond_fn.set_name("cond_fn");
        NameAttrList body_fn;
        body_fn.set_name("body_fn");
        auto while_op =
            ops::While(s.WithOpName("while"), std::initializer_list<Input>{input},
                       cond_fn, body_fn);
        ops::_Retval retval(s.WithOpName("retval"), while_op.output[0], 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

    def LiftConvWithBiasDynamic : Pat<
      (StableHLO_AddOp:$res
        (StableHLO_ConvolutionOp:$conv_0 $lhs, $rhs, $window_strides, $padding,
            $lhs_dilation, $rhs_dilation, $window_reversal, $dimension_numbers,
            $feature_group_count, $batch_group_count, $precision_config),
        (StableHLO_DynamicBroadcastInDimOp
          $bias,
          (Shape_ShapeOfOp $conv_1), $_, $_, $_)),
      (LiftAsTFXlaCallModule<"composite_conv_with_bias_dynamic_fn">
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top