Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,207 for scope_ (0.23 sec)

  1. tensorflow/cc/gradients/array_grad_test.cc

      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto indices = Cast(scope_, Const(scope_, {{1}, {0}}), DT_INT64);
      auto y = GatherNd(scope_, x, indices);
      RunTest(x, shape, y, shape);
    }
    
    TEST_F(ArrayGradTest, CheckNumericsGrad) {
      TensorShape shape({5, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto y = CheckNumerics(scope_, x, "CheckNumerics failed");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad_test.cc

            break;
          case EXPM1:
            y = Expm1(scope_, x);
            break;
          case LOG:
            y = Log(scope_, x);
            break;
          case LOG1P:
            y = Log1p(scope_, x);
            break;
          case SINH:
            y = Sinh(scope_, x);
            break;
          case COSH:
            y = Cosh(scope_, x);
            break;
          case TANH:
            y = Tanh(scope_, x);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradients_test.cc

                        ? StopGradient(scope_, (Identity(scope_, z))).output
                        : Identity(scope_, z).output;
        auto out1 = stop_outputs[1]
                        ? StopGradient(scope_, (Identity(scope_, z))).output
                        : Identity(scope_, z).output;
        auto out2 = stop_outputs[2]
                        ? StopGradient(scope_, (Identity(scope_, z))).output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  4. tensorflow/cc/ops/while_loop_test.cc

    namespace tensorflow {
    
    namespace {
    
    class WhileLoopTest : public ::testing::Test {
     protected:
      WhileLoopTest() : scope_(Scope::NewRootScope()) {}
    
      void Init(int num_inputs, DataType dtype = DT_INT32) {
        for (int i = 0; i < num_inputs; ++i) {
          inputs_.push_back(ops::Placeholder(scope_, dtype));
        }
      }
    
      void CreateLoop(const ops::CondGraphBuilderFn& cond,
                      const ops::BodyGraphBuilderFn& body,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradients.cc

    };
    
    SymbolicGradientBuilder::SymbolicGradientBuilder(
        const Scope& scope, const ops::GradOpRegistry* registry,
        const std::vector<Output>& outputs, const std::vector<Output>& inputs,
        const std::vector<Output>& grad_inputs, std::vector<Output>* grad_outputs)
        : scope_(scope),
          registry_(registry),
          outputs_(outputs),
          inputs_(inputs),
          grad_inputs_(grad_inputs),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

            scope_.graph()->AddControlEdge(e->src(), new_const.node());
          }
        }
        return it->second;
      }
    
     private:
      Scope scope_;
      std::unordered_map<int, Output> cache_;
      std::vector<const Edge*> control_deps_;
    };
    
    // Returns a node computing the size of the Slice op with inputs `slice_inputs`.
    Status ComputeSliceSize(const Scope& host_scope,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/go/types/scope.go

    // and looked up by name. The zero value for Scope is a ready-to-use
    // empty scope.
    type Scope struct {
    	parent   *Scope
    	children []*Scope
    	number   int               // parent.children[number-1] is this scope; 0 if there is no parent
    	elems    map[string]Object // lazily allocated
    	pos, end token.Pos         // scope extent; may be invalid
    	comment  string            // for debugging only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/scope.go

    func NewScope(parent *Scope, pos, end syntax.Pos, comment string) *Scope {
    	s := &Scope{parent, nil, 0, nil, pos, end, comment, false}
    	// don't add children to Universe scope!
    	if parent != nil && parent != Universe {
    		parent.children = append(parent.children, s)
    		s.number = len(parent.children)
    	}
    	return s
    }
    
    // Parent returns the scope's containing (parent) scope.
    func (s *Scope) Parent() *Scope { return s.parent }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. pkg/log/scope.go

    			s.nameToEmit = name
    		}
    
    		scopes[name] = s
    	}
    
    	s.labels = make(map[string]any)
    
    	return s
    }
    
    // FindScope returns a previously registered scope, or nil if the named scope wasn't previously registered
    func FindScope(scope string) *Scope {
    	lock.RLock()
    	defer lock.RUnlock()
    
    	s := scopes[scope]
    	return s
    }
    
    // Scopes returns a snapshot of the currently defined set of scopes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/scope.h

      // scopes, or scopes derived from an existing scope object.
    
      /// Return a new scope.
      /// This creates a new graph and all operations constructed in this graph
      /// should use the returned object as the "root" scope.
      static Scope NewRootScope();
    
      /// Return a new scope. Ops created with this scope will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top